Skip to content

Commit ca751d9

Browse files
committed
branche reinitilized to take into accoout compas new packaging
Signed-off-by: Mohamed Sylla <[email protected]>
1 parent 12733cd commit ca751d9

File tree

92 files changed

+29
-6338
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+29
-6338
lines changed

pom.xml

Lines changed: 5 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,14 @@
66
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
77
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
88
<modelVersion>4.0.0</modelVersion>
9-
<parent>
10-
<groupId>org.springframework.boot</groupId>
11-
<artifactId>spring-boot-starter-parent</artifactId>
12-
<version>2.4.2</version>
13-
</parent>
14-
159
<groupId>org.lfenergy.compas</groupId>
1610
<artifactId>compas-sct</artifactId>
17-
<version>1.0-SNAPSHOT</version>
11+
<version>local-SNAPSHOT</version>
1812
<packaging>pom</packaging>
1913
<name>COMPAS-SCT</name>
2014

2115
<properties>
22-
<compas.core.version>1.0-SNAPSHOT</compas.core.version>
16+
<compas.core.version>local-SNAPSHOT</compas.core.version>
2317
<maven.compiler.target>11</maven.compiler.target>
2418
<maven.compiler.source>11</maven.compiler.source>
2519
<sonar.coverage.exclusions>sct-coverage/**</sonar.coverage.exclusions>
@@ -28,47 +22,14 @@
2822
</properties>
2923
<dependencies>
3024
<dependency>
31-
<groupId>org.springframework.boot</groupId>
32-
<artifactId>spring-boot-starter</artifactId>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.springframework.boot</groupId>
36-
<artifactId>spring-boot-starter-data-jpa</artifactId>
37-
</dependency>
38-
<dependency>
39-
<groupId>com.h2database</groupId>
40-
<artifactId>h2</artifactId>
41-
<scope>test</scope>
42-
</dependency>
43-
<dependency>
44-
<groupId>org.postgresql</groupId>
45-
<artifactId>postgresql</artifactId>
46-
<scope>runtime</scope>
47-
</dependency>
48-
<dependency>
49-
<groupId>org.projectlombok</groupId>
50-
<artifactId>lombok</artifactId>
51-
<optional>true</optional>
52-
</dependency>
53-
<dependency>
54-
<groupId>org.springframework.boot</groupId>
55-
<artifactId>spring-boot-starter-test</artifactId>
56-
<scope>test</scope>
57-
<exclusions>
58-
<exclusion>
59-
<groupId>org.junit.vintage</groupId>
60-
<artifactId>junit-vintage-engine</artifactId>
61-
</exclusion>
62-
</exclusions>
63-
</dependency>
64-
<dependency>
65-
<groupId>org.lfenergy.compas</groupId>
66-
<artifactId>core-commons</artifactId>
25+
<groupId>org.lfenergy.compas.core</groupId>
26+
<artifactId>scl2007b4</artifactId>
6727
<version>${compas.core.version}</version>
6828
</dependency>
6929
</dependencies>
7030
<modules>
7131
<module>sct-data</module>
32+
<module>sct-data-postgres</module>
7233
<module>sct-service</module>
7334
<module>sct-coverage</module>
7435
</modules>

sct-coverage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>org.lfenergy.compas</groupId>
1212
<artifactId>compas-sct</artifactId>
13-
<version>1.0-SNAPSHOT</version>
13+
<version>local-SNAPSHOT</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616

sct-data-postgres/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>org.lfenergy.compas</groupId>
9+
<artifactId>compas-sct</artifactId>
10+
<version>local-SNAPSHOT</version>
11+
</parent>
12+
13+
<name>SCT DATA POSTGRES</name>
14+
<artifactId>sct-data-postgres</artifactId>
15+
<version>1.0-SNAPSHOT</version>
16+
17+
<properties>
18+
<sonar.coverage.jacoco.xmlReportPaths>${basedir}/${aggregate.report.dir}</sonar.coverage.jacoco.xmlReportPaths>
19+
</properties>
20+
21+
</project>

sct-data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.lfenergy.compas</groupId>
1313
<artifactId>compas-sct</artifactId>
14-
<version>1.0-SNAPSHOT</version>
14+
<version>local-SNAPSHOT</version>
1515
</parent>
1616

1717
<artifactId>sct-data</artifactId>

sct-data/src/main/java/org/lfenergy/compas/sct/exception/CompasDataAccessException.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

sct-data/src/main/java/org/lfenergy/compas/sct/model/IAccessPointDTO.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

sct-data/src/main/java/org/lfenergy/compas/sct/model/IConnectedApDTO.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

sct-data/src/main/java/org/lfenergy/compas/sct/model/IControlBlockDTO.java

Lines changed: 0 additions & 9 deletions
This file was deleted.

sct-data/src/main/java/org/lfenergy/compas/sct/model/IIedDTO.java

Lines changed: 0 additions & 16 deletions
This file was deleted.

sct-data/src/main/java/org/lfenergy/compas/sct/model/ILDeviceDTO.java

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)