Skip to content

Commit b077200

Browse files
committed
Unify pom.xml on root project
1 parent ef6be97 commit b077200

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>es.upv.mist.slicing</groupId>
88
<artifactId>sdg</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0-SNAPSHOT</version>
10+
<version>1.2.4</version>
1111

1212
<properties>
1313
<maven.compiler.source>11</maven.compiler.source>

sdg-cli/pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>es.upv.mist.slicing</groupId>
87
<artifactId>sdg-cli</artifactId>
9-
<version>1.0.5</version>
8+
9+
<parent>
10+
<artifactId>sdg</artifactId>
11+
<groupId>es.upv.mist.slicing</groupId>
12+
<version>1.2.4</version>
13+
</parent>
1014

1115
<properties>
1216
<maven.compiler.source>11</maven.compiler.source>
@@ -57,7 +61,7 @@
5761
<dependency>
5862
<groupId>es.upv.mist.slicing</groupId>
5963
<artifactId>sdg-core</artifactId>
60-
<version>1.2.4</version>
64+
<version>${parent.version}</version>
6165
</dependency>
6266
</dependencies>
6367
</project>

sdg-core/pom.xml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,25 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>es.upv.mist.slicing</groupId>
87
<artifactId>sdg-core</artifactId>
9-
<version>1.2.4</version>
8+
9+
<parent>
10+
<artifactId>sdg</artifactId>
11+
<groupId>es.upv.mist.slicing</groupId>
12+
<version>1.2.4</version>
13+
</parent>
1014

1115
<properties>
1216
<maven.compiler.source>11</maven.compiler.source>
1317
<maven.compiler.target>11</maven.compiler.target>
1418
</properties>
1519

1620
<dependencies>
21+
<dependency>
22+
<groupId>com.github.javaparser</groupId>
23+
<artifactId>javaparser-core</artifactId>
24+
<version>3.9.1</version>
25+
</dependency>
1726
<dependency>
1827
<groupId>com.github.javaparser</groupId>
1928
<artifactId>javaparser-symbol-solver-core</artifactId>
@@ -32,13 +41,11 @@
3241
<artifactId>jgrapht-core</artifactId>
3342
<version>1.3.0</version>
3443
</dependency>
35-
3644
<dependency>
3745
<groupId>org.jgrapht</groupId>
3846
<artifactId>jgrapht-io</artifactId>
3947
<version>1.3.0</version>
4048
</dependency>
41-
4249
<dependency>
4350
<groupId>org.junit.jupiter</groupId>
4451
<artifactId>junit-jupiter</artifactId>

0 commit comments

Comments
 (0)