Skip to content

Commit 610ac2f

Browse files
committed
set version v2.0.0
1 parent e76fb80 commit 610ac2f

File tree

8 files changed

+18
-9
lines changed

8 files changed

+18
-9
lines changed

client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.pwm-project</groupId>
55
<artifactId>pwm-parent</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99

data-service/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.pwm-project</groupId>
55
<artifactId>pwm-parent</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99

docker/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.pwm-project</groupId>
55
<artifactId>pwm-parent</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99

onejar/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.pwm-project</groupId>
55
<artifactId>pwm-parent</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99

@@ -16,7 +16,7 @@
1616
<name>PWM Password Self Service: Executable Server JAR</name>
1717

1818
<properties>
19-
<tomcat.version>9.0.48</tomcat.version>
19+
<tomcat.version>9.0.50</tomcat.version>
2020
</properties>
2121

2222
<build>

pom.xml

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.pwm-project</groupId>
66
<artifactId>pwm-parent</artifactId>
7-
<version>2.0.0-SNAPSHOT</version>
7+
<version>2.0.0</version>
88
<packaging>pom</packaging>
99

1010
<name>PWM Password Self Service</name>
@@ -40,6 +40,7 @@
4040

4141
<!-- profile managed values -->
4242
<spotbugs.skip>false</spotbugs.skip>
43+
<owasp.skip>false</owasp.skip>
4344
<checkstyle.skip>false</checkstyle.skip>
4445
<skipTests>false</skipTests>
4546

@@ -70,6 +71,12 @@
7071
<spotbugs.skip>true</spotbugs.skip>
7172
</properties>
7273
</profile>
74+
<profile>
75+
<id>skip-owasp</id>
76+
<properties>
77+
<spotbugs.owasp>true</spotbugs.owasp>
78+
</properties>
79+
</profile>
7380
<profile>
7481
<id>enable-javadoc</id>
7582
<properties>
@@ -381,7 +388,9 @@
381388
<goal>check</goal>
382389
</goals>
383390
<configuration>
391+
<skip>${owasp.skip}</skip>
384392
<yarnAuditAnalyzerEnabled>false</yarnAuditAnalyzerEnabled>
393+
<nodeAnalyzerEnabled>false</nodeAnalyzerEnabled>
385394
</configuration>
386395
</execution>
387396
</executions>

rest-test-service/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.pwm-project</groupId>
55
<artifactId>pwm-parent</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99

server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.pwm-project</groupId>
55
<artifactId>pwm-parent</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99

webapp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.pwm-project</groupId>
55
<artifactId>pwm-parent</artifactId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99

0 commit comments

Comments
 (0)