summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorjz385p <jegadeesh.babu@att.com>2020-04-23 16:35:12 +0530
committerJegadeesh Babu <jegadeesh.babu@att.com>2020-04-28 10:23:54 +0000
commitb5a15c31e68fe80503a8058121cdd2a4ac11a281 (patch)
treefbc3f7e5ddad48daac439497b82cf01c0c9d67c1 /pom.xml
parentd7f3b463c9f0f11ceb0aad255f564b02c22ab978 (diff)
Upgraded SDK and CXF versions
Added application security fixes Issue-ID: PORTAL-888 Change-Id: I4a3ce8e78a059abd661571eb54857dccb7b8fa6d Signed-off-by: jz385p <jegadeesh.babu@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml24
1 files changed, 22 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 19d8c34e..7c484016 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
<properties>
<!-- Jenkins should invoke mvn with argument -Dbuild.number=${BUILD_NUMBER} -->
<build.number>0</build.number>
- <epsdk.version>2.6.0</epsdk.version>
+ <epsdk.version>3.3.0-SNAPSHOT</epsdk.version>
<springframework.version>4.3.24.RELEASE</springframework.version>
<springframework.security.version>4.2.13.RELEASE</springframework.security.version>
<hibernate.version>4.3.11.Final</hibernate.version>
@@ -297,7 +297,27 @@
</execution>
</executions>
</plugin>
-
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <version>3.0.0-M2</version>
+ <executions>
+ <execution>
+ <id>enforce-no-snapshots</id>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireReleaseVersion>
+ <message>No Snapshots Allowed!</message>
+ </requireReleaseVersion>
+ </rules>
+ <fail>false</fail>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>