diff options
author | liamfallon <liam.fallon@est.tech> | 2019-04-04 13:26:58 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-04-04 13:26:58 +0000 |
commit | 2128942b95031180c9fab063fb43b8a710d1cdfe (patch) | |
tree | dac64e4ed64404ac34f92ab2e0fed7949a1e7a08 /utils/pom.xml | |
parent | 21e6fdea3e207ae7c690158ddc336bd7c0785b15 (diff) |
Add semantic version comparable class
Class written by Jim Hahn that implements Comparable for comparing
semantic versions. Lifted from policy models pap.
Issue-ID: POLICY-1095
Change-Id: Ie8c5f9066c06cb569085e1390b3de3e4aa580267
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'utils/pom.xml')
-rw-r--r-- | utils/pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/utils/pom.xml b/utils/pom.xml index f75a60b8..15c00124 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -18,7 +18,8 @@ ============LICENSE_END========================================================= --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -64,6 +65,11 @@ <artifactId>javax.persistence</artifactId> </dependency> <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <scope>provided</scope> + </dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> |