Skip to content

Commit e8964e2

Browse files
authored
Feat #120: Update compas-sct POM with newer compas-core (and scl-extension) version. Definition in the top project pom to be easily updatable in the future. (#121)
Signed-off-by: SaintierFr <[email protected]> Signed-off-by: SaintierFr <[email protected]>
1 parent d58e0cb commit e8964e2

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
<sonar.coverage.exclusions>sct-coverage/**</sonar.coverage.exclusions>
3737
<aggregate.report.dir>../sct-coverage/target/site/jacoco-aggregate/jacoco.xml</aggregate.report.dir>
3838
<sonar.coverage.jacoco.xmlReportPaths>${basedir}/${aggregate.report.dir}</sonar.coverage.jacoco.xmlReportPaths>
39+
<scl-extension.version>0.9.1</scl-extension.version>
40+
<compas-scl-xsd.version>0.0.4</compas-scl-xsd.version>
3941
</properties>
4042

4143
<dependencyManagement>
@@ -71,7 +73,12 @@
7173
<dependency>
7274
<groupId>org.lfenergy.compas.core</groupId>
7375
<artifactId>scl-extension</artifactId>
74-
<version>0.8.0</version>
76+
<version>${scl-extension.version}</version>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.lfenergy.compas.xsd</groupId>
80+
<artifactId>compas-scl-xsd</artifactId>
81+
<version>${compas-scl-xsd.version}</version>
7582
</dependency>
7683
<dependency>
7784
<groupId>ch.qos.logback</groupId>
@@ -104,6 +111,16 @@
104111
<build>
105112
<pluginManagement>
106113
<plugins>
114+
<plugin>
115+
<groupId>org.lfenergy.compas.xsd</groupId>
116+
<artifactId>compas-scl-xsd</artifactId>
117+
<version>${compas-scl-xsd.version}</version>
118+
</plugin>
119+
<plugin>
120+
<groupId>org.lfenergy.compas.core</groupId>
121+
<artifactId>scl-extension</artifactId>
122+
<version>${scl-extension.version}</version>
123+
</plugin>
107124
<plugin>
108125
<groupId>org.apache.maven.plugins</groupId>
109126
<artifactId>maven-compiler-plugin</artifactId>
@@ -119,6 +136,11 @@
119136
<artifactId>maven-surefire-plugin</artifactId>
120137
<version>2.22.2</version>
121138
</plugin>
139+
<plugin>
140+
<groupId>org.apache.maven.plugins</groupId>
141+
<artifactId>maven-jar-plugin</artifactId>
142+
<version>3.2.2</version>
143+
</plugin>
122144
</plugins>
123145
</pluginManagement>
124146

sct-app/pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<version>local-SNAPSHOT</version>
1414
</parent>
1515

16-
<groupId>org.lfenergy.compas</groupId>
1716
<artifactId>sct-app</artifactId>
1817
<version>local-SNAPSHOT</version>
1918
<name>SCT-APP</name>
@@ -112,12 +111,10 @@
112111
<artifactItem>
113112
<groupId>org.lfenergy.compas.xsd</groupId>
114113
<artifactId>compas-scl-xsd</artifactId>
115-
<version>0.0.4</version>
116114
</artifactItem>
117115
<artifactItem>
118116
<groupId>org.lfenergy.compas.core</groupId>
119117
<artifactId>scl-extension</artifactId>
120-
<version>0.8.0</version>
121118
</artifactItem>
122119
</artifactItems>
123120
<outputDirectory>${project.build.directory}</outputDirectory>

sct-commons/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@
112112
<scope>test</scope>
113113
</dependency>
114114
</dependencies>
115+
115116
<build>
116117
<plugins>
117118
<plugin>
@@ -166,12 +167,10 @@
166167
<artifactItem>
167168
<groupId>org.lfenergy.compas.xsd</groupId>
168169
<artifactId>compas-scl-xsd</artifactId>
169-
<version>0.0.4</version>
170170
</artifactItem>
171171
<artifactItem>
172172
<groupId>org.lfenergy.compas.core</groupId>
173173
<artifactId>scl-extension</artifactId>
174-
<version>0.8.0</version>
175174
</artifactItem>
176175
</artifactItems>
177176
<outputDirectory>${project.build.directory}</outputDirectory>

sct-data/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<version>local-SNAPSHOT</version>
1515
</parent>
1616

17-
<groupId>org.lfenergy.compas</groupId>
1817
<artifactId>sct-data</artifactId>
1918
<version>local-SNAPSHOT</version>
2019
<name>SCT-DATA</name>

0 commit comments

Comments
 (0)