Skip to content

Commit

Permalink
Stopped using -alpha in version number. Added docs and source to common.
Browse files Browse the repository at this point in the history
  • Loading branch information
TVolden committed Sep 5, 2016
1 parent 1b34d48 commit 9bc52a9
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 26 deletions.
28 changes: 27 additions & 1 deletion ocpp-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>eu.chargetime.ocpp</groupId>
<artifactId>common</artifactId>
<version>0.2-alpha-SNAPSHOT</version>
<version>0.2</version>

<name>Java-OCA-OCPP common</name>
<description>Implementation of Open Charge-Point Protocol common library.</description>
Expand Down Expand Up @@ -66,6 +66,32 @@
</configuration>
<version>3.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
23 changes: 3 additions & 20 deletions ocpp-v1_6-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>eu.chargetime.ocpp</groupId>
<artifactId>v1_6-test</artifactId>
<version>0.2-alpha-SNAPSHOT</version>
<version>0.2</version>

<name>Java-OCA-OCPP v1.6 - Integration test</name>
<description>Integration test of OCA OCPP version 1.6</description>
Expand Down Expand Up @@ -38,36 +38,19 @@
<dependency>
<groupId>eu.chargetime.ocpp</groupId>
<artifactId>common</artifactId>
<version>0.2-alpha-SNAPSHOT</version>
<version>0.2</version>
</dependency>
<dependency>
<groupId>eu.chargetime.ocpp</groupId>
<artifactId>v1_6</artifactId>
<version>0.2-alpha-SNAPSHOT</version>
<version>0.2</version>
</dependency>
<!--<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20160212</version>
<scope>compile</scope>
</dependency>-->
<!--<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.3.0</version>
</dependency>-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!--<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.4</version>
<scope>test</scope>
</dependency>-->
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
Expand Down
8 changes: 4 additions & 4 deletions ocpp-v1_6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>eu.chargetime.ocpp</groupId>
<artifactId>v1_6</artifactId>
<version>0.2-alpha-SNAPSHOT</version>
<version>0.2</version>

<name>Java-OCA-OCPP v1.6</name>
<description>Implementation of Open Charge-Point Protocol version 1.6.</description>
Expand Down Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>eu.chargetime.ocpp</groupId>
<artifactId>common</artifactId>
<version>0.2-alpha-SNAPSHOT</version>
<version>0.2</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
Expand Down Expand Up @@ -108,7 +108,7 @@
</execution>
</executions>
</plugin>
<!--
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand All @@ -123,7 +123,7 @@
</execution>
</executions>
</plugin>
-->
-->
</plugins>
</build>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>eu.chargetime.ocpp</groupId>
<artifactId>all</artifactId>
<version>0.2-alpha-SNAPSHOT</version>
<version>0.2</version>
<packaging>pom</packaging>

<name>Java-OCA-OCPP</name>
Expand Down

0 comments on commit 9bc52a9

Please sign in to comment.