Skip to content

Commit aa6958d

Browse files
authored
Merge pull request #213 from com-pas/211-evolution-on-creation-datasets-and-cb
feat(211): Evolution on Services types verification for ControlBlock …
2 parents c236b99 + be66005 commit aa6958d

File tree

9 files changed

+491
-181
lines changed

9 files changed

+491
-181
lines changed

.github/workflows/sonarcloud-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
distribution: 'zulu'
2121
java-version: '17'
2222
- name: Cache SonarCloud packages
23-
uses: actions/cache@v1
23+
uses: actions/cache@v3
2424
with:
2525
path: ~/.sonar/cache
2626
key: ${{ runner.os }}-sonar
2727
restore-keys: ${{ runner.os }}-sonar
2828
- name: Cache Maven packages
29-
uses: actions/cache@v1
29+
uses: actions/cache@v3
3030
with:
3131
path: ~/.m2
3232
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

pom.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
<plugin>
137137
<groupId>org.apache.maven.plugins</groupId>
138138
<artifactId>maven-compiler-plugin</artifactId>
139-
<version>3.8.1</version>
139+
<version>3.10.1</version>
140140
<configuration>
141141
<source>${java.version}</source>
142142
<target>${java.version}</target>
@@ -189,10 +189,6 @@
189189
</pluginManagement>
190190

191191
<plugins>
192-
<plugin>
193-
<groupId>org.apache.maven.plugins</groupId>
194-
<artifactId>maven-compiler-plugin</artifactId>
195-
</plugin>
196192
<plugin>
197193
<groupId>org.jacoco</groupId>
198194
<artifactId>jacoco-maven-plugin</artifactId>

sct-commons/src/main/java/org/lfenergy/compas/sct/commons/scl/ied/AbstractLNAdapter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -938,4 +938,5 @@ private void removeExtRefSourceBinding(final TExtRef tExtRef) {
938938
tExtRef.setSrcLNInst(null);
939939
tExtRef.unsetSrcLNClass();
940940
}
941+
941942
}

0 commit comments

Comments
 (0)