Skip to content

Commit e1099cb

Browse files
committed
2 parents 6d6ac5f + 4eb61b3 commit e1099cb

File tree

2 files changed

+33
-45
lines changed

2 files changed

+33
-45
lines changed

openstack-api/deploy.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
mvn -DaltDeploymentRepository=snapshots::default::file:///Users/sp/dev/maven/snapshots clean deploy

pom.xml

Lines changed: 31 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@
77
<version>0.0.1-SNAPSHOT</version>
88
<name>OpenStack Java SDK</name>
99
<url>http://github.com/woorea/openstack-java-sdk</url>
10-
11-
<parent>
12-
<groupId>org.sonatype.oss</groupId>
13-
<artifactId>oss-parent</artifactId>
14-
<version>5</version>
15-
</parent>
16-
10+
<!-- <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId>
11+
<version>5</version> </parent> -->
12+
13+
<licenses>
14+
<license>
15+
<name>Apache2</name>
16+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17+
</license>
18+
</licenses>
19+
1720
<developers>
1821
<developer>
1922
<id>woorea</id>
@@ -27,42 +30,35 @@
2730
</developer>
2831
</developers>
2932

30-
<licenses>
31-
<license>
32-
<name>Apache2</name>
33-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34-
</license>
35-
</licenses>
33+
<modules>
34+
<module>openstack-api</module>
35+
<module>openstack-console</module>
36+
<module>openstack-ui</module>
37+
</modules>
3638

3739
<scm>
3840
<connection>scm:http://github.com/woorea/openstack-java-sdk.git</connection>
3941
<developerConnection>scm:http://github.com/woorea/openstack-java-sdk.git</developerConnection>
4042
<url>http://github.com/woorea/openstack-java-sdk.git</url>
4143
</scm>
42-
43-
<modules>
44-
<module>openstack-api</module>
45-
<module>openstack-console</module>
46-
<module>openstack-ui</module>
47-
</modules>
44+
45+
<distributionManagement>
46+
<repository>
47+
<id>releases</id>
48+
<url>https://github.com/woorea/maven/raw/master/releases</url>
49+
</repository>
50+
<snapshotRepository>
51+
<id>snapshots</id>
52+
<url>https://github.com/woorea/maven/raw/master/snapshots</url>
53+
</snapshotRepository>
54+
</distributionManagement>
4855

4956
<properties>
5057
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5158
</properties>
5259

5360
<dependencyManagement>
5461
<dependencies>
55-
<dependency>
56-
<groupId>org.openstack</groupId>
57-
<artifactId>openstack-commons</artifactId>
58-
<version>${project.version}</version>
59-
</dependency>
60-
61-
<dependency>
62-
<groupId>org.openstack</groupId>
63-
<artifactId>shared-cli</artifactId>
64-
<version>${project.version}</version>
65-
</dependency>
6662
<dependency>
6763
<groupId>org.openstack</groupId>
6864
<artifactId>openstack-api</artifactId>
@@ -123,23 +119,13 @@
123119
<excludeFilterFile>config/findbugs-exclude.xml</excludeFilterFile>
124120
</configuration>
125121
</plugin>
126-
<!--
127-
<plugin>
128-
<groupId>org.apache.maven.plugins</groupId>
129-
<artifactId>maven-gpg-plugin</artifactId>
130-
<executions>
131-
<execution>
132-
<id>sign-artifacts</id>
133-
<phase>verify</phase>
134-
<goals>
135-
<goal>sign</goal>
136-
</goals>
137-
</execution>
138-
</executions>
139-
</plugin>
140-
-->
122+
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId>
123+
<executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals>
124+
<goal>sign</goal> </goals> </execution> </executions> </plugin> -->
141125
</plugins>
142126

143127
</build>
144128

129+
130+
145131
</project>

0 commit comments

Comments
 (0)