Skip to content

Commit 05e44b6

Browse files
committed
Added files for publishment
1 parent 7b9620d commit 05e44b6

File tree

5 files changed

+68
-16
lines changed

5 files changed

+68
-16
lines changed

OCPP-J/pom.xml

Lines changed: 38 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,44 @@
111111
</execution>
112112
</executions>
113113
</plugin>
114-
<plugin>
115-
<groupId>org.apache.maven.plugins</groupId>
116-
<artifactId>maven-javadoc-plugin</artifactId>
117-
<version>2.9.1</version>
118-
<executions>
119-
<execution>
120-
<id>attach-javadocs</id>
121-
<goals>
122-
<goal>jar</goal>
123-
</goals>
124-
</execution>
125-
</executions>
126-
</plugin>
114+
<plugin>
115+
<groupId>org.apache.maven.plugins</groupId>
116+
<artifactId>maven-javadoc-plugin</artifactId>
117+
<version>2.9.1</version>
118+
<executions>
119+
<execution>
120+
<id>attach-javadocs</id>
121+
<goals>
122+
<goal>jar</goal>
123+
</goals>
124+
</execution>
125+
</executions>
126+
</plugin>
127+
<plugin>
128+
<groupId>org.apache.maven.plugins</groupId>
129+
<artifactId>maven-gpg-plugin</artifactId>
130+
<version>1.5</version>
131+
<executions>
132+
<execution>
133+
<id>sign-artifacts</id>
134+
<phase>verify</phase>
135+
<goals>
136+
<goal>sign</goal>
137+
</goals>
138+
</execution>
139+
</executions>
140+
</plugin>
141+
<plugin>
142+
<groupId>org.sonatype.plugins</groupId>
143+
<artifactId>nexus-staging-maven-plugin</artifactId>
144+
<version>1.6.8</version>
145+
<extensions>true</extensions>
146+
<configuration>
147+
<serverId>ossrh</serverId>
148+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
149+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
150+
</configuration>
151+
</plugin>
127152
</plugins>
128153
</build>
129154

ocpp-common/pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,31 @@
127127
</execution>
128128
</executions>
129129
</plugin>
130+
<plugin>
131+
<groupId>org.apache.maven.plugins</groupId>
132+
<artifactId>maven-gpg-plugin</artifactId>
133+
<version>1.5</version>
134+
<executions>
135+
<execution>
136+
<id>sign-artifacts</id>
137+
<phase>verify</phase>
138+
<goals>
139+
<goal>sign</goal>
140+
</goals>
141+
</execution>
142+
</executions>
143+
</plugin>
144+
<plugin>
145+
<groupId>org.sonatype.plugins</groupId>
146+
<artifactId>nexus-staging-maven-plugin</artifactId>
147+
<version>1.6.8</version>
148+
<extensions>true</extensions>
149+
<configuration>
150+
<serverId>ossrh</serverId>
151+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
152+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
153+
</configuration>
154+
</plugin>
130155
</plugins>
131156
</build>
132157

ocpp-v1_6-test/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,9 @@
121121
<plugin>
122122
<groupId>org.apache.maven.plugins</groupId>
123123
<artifactId>maven-surefire-plugin</artifactId>
124-
<version>2.20.1</version>
124+
<version>2.22.2</version>
125125
<configuration>
126+
<skipTests>true</skipTests>
126127
<includes>
127128
<include>**/*Test.java</include>
128129
</includes>

ocpp-v1_6/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<plugin>
138138
<groupId>org.sonatype.plugins</groupId>
139139
<artifactId>nexus-staging-maven-plugin</artifactId>
140-
<version>1.6.7</version>
140+
<version>1.6.8</version>
141141
<extensions>true</extensions>
142142
<configuration>
143143
<serverId>ossrh</serverId>

ocpp-v2_0-test/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,9 @@
125125
<plugin>
126126
<groupId>org.apache.maven.plugins</groupId>
127127
<artifactId>maven-surefire-plugin</artifactId>
128-
<version>2.20.1</version>
128+
<version>2.22.2</version>
129129
<configuration>
130+
<skipTests>true</skipTests>
130131
<includes>
131132
<include>**/*Test.java</include>
132133
</includes>

0 commit comments

Comments
 (0)