Skip to content

Commit 9bc52a9

Browse files
committed
Stopped using -alpha in version number. Added docs and source to common.
1 parent 1b34d48 commit 9bc52a9

File tree

4 files changed

+35
-26
lines changed

4 files changed

+35
-26
lines changed

ocpp-common/pom.xml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>eu.chargetime.ocpp</groupId>
88
<artifactId>common</artifactId>
9-
<version>0.2-alpha-SNAPSHOT</version>
9+
<version>0.2</version>
1010

1111
<name>Java-OCA-OCPP common</name>
1212
<description>Implementation of Open Charge-Point Protocol common library.</description>
@@ -66,6 +66,32 @@
6666
</configuration>
6767
<version>3.5.1</version>
6868
</plugin>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-source-plugin</artifactId>
72+
<version>2.2.1</version>
73+
<executions>
74+
<execution>
75+
<id>attach-sources</id>
76+
<goals>
77+
<goal>jar-no-fork</goal>
78+
</goals>
79+
</execution>
80+
</executions>
81+
</plugin>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-javadoc-plugin</artifactId>
85+
<version>2.9.1</version>
86+
<executions>
87+
<execution>
88+
<id>attach-javadocs</id>
89+
<goals>
90+
<goal>jar</goal>
91+
</goals>
92+
</execution>
93+
</executions>
94+
</plugin>
6995
</plugins>
7096
</build>
7197

ocpp-v1_6-test/pom.xml

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>eu.chargetime.ocpp</groupId>
88
<artifactId>v1_6-test</artifactId>
9-
<version>0.2-alpha-SNAPSHOT</version>
9+
<version>0.2</version>
1010

1111
<name>Java-OCA-OCPP v1.6 - Integration test</name>
1212
<description>Integration test of OCA OCPP version 1.6</description>
@@ -38,36 +38,19 @@
3838
<dependency>
3939
<groupId>eu.chargetime.ocpp</groupId>
4040
<artifactId>common</artifactId>
41-
<version>0.2-alpha-SNAPSHOT</version>
41+
<version>0.2</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>eu.chargetime.ocpp</groupId>
4545
<artifactId>v1_6</artifactId>
46-
<version>0.2-alpha-SNAPSHOT</version>
46+
<version>0.2</version>
4747
</dependency>
48-
<!--<dependency>
49-
<groupId>org.json</groupId>
50-
<artifactId>json</artifactId>
51-
<version>20160212</version>
52-
<scope>compile</scope>
53-
</dependency>-->
54-
<!--<dependency>
55-
<groupId>org.java-websocket</groupId>
56-
<artifactId>Java-WebSocket</artifactId>
57-
<version>1.3.0</version>
58-
</dependency>-->
5948
<dependency>
6049
<groupId>junit</groupId>
6150
<artifactId>junit</artifactId>
6251
<version>4.12</version>
6352
<scope>test</scope>
6453
</dependency>
65-
<!--<dependency>
66-
<groupId>org.codehaus.groovy</groupId>
67-
<artifactId>groovy-all</artifactId>
68-
<version>2.4.4</version>
69-
<scope>test</scope>
70-
</dependency>-->
7154
<dependency>
7255
<groupId>org.spockframework</groupId>
7356
<artifactId>spock-core</artifactId>

ocpp-v1_6/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>eu.chargetime.ocpp</groupId>
88
<artifactId>v1_6</artifactId>
9-
<version>0.2-alpha-SNAPSHOT</version>
9+
<version>0.2</version>
1010

1111
<name>Java-OCA-OCPP v1.6</name>
1212
<description>Implementation of Open Charge-Point Protocol version 1.6.</description>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>eu.chargetime.ocpp</groupId>
4040
<artifactId>common</artifactId>
41-
<version>0.2-alpha-SNAPSHOT</version>
41+
<version>0.2</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>org.json</groupId>
@@ -108,7 +108,7 @@
108108
</execution>
109109
</executions>
110110
</plugin>
111-
<!--
111+
<!--
112112
<plugin>
113113
<groupId>org.apache.maven.plugins</groupId>
114114
<artifactId>maven-gpg-plugin</artifactId>
@@ -123,7 +123,7 @@
123123
</execution>
124124
</executions>
125125
</plugin>
126-
-->
126+
-->
127127
</plugins>
128128
</build>
129129

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>eu.chargetime.ocpp</groupId>
88
<artifactId>all</artifactId>
9-
<version>0.2-alpha-SNAPSHOT</version>
9+
<version>0.2</version>
1010
<packaging>pom</packaging>
1111

1212
<name>Java-OCA-OCPP</name>

0 commit comments

Comments
 (0)