Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to cimgen master #4

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
distribution: ['temurin']
java: ['11', '17', '23']
name: Java ${{matrix.java}} (${{matrix.distribution}}) build
name: Java ${{matrix.java}} (${{matrix.distribution}}) build & test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand Down
18 changes: 16 additions & 2 deletions CGMES_2.4.15_27JAN2020/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,23 @@
<parent>
<groupId>org.lfenergy.sogno</groupId>
<artifactId>cim4j-parent</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cim4j-cgmes-2-4-15</artifactId>

<name>Java classes for CIM / CGMES 2.4.15</name>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -23,11 +32,16 @@
<configuration>
<archive>
<manifest>
<mainClass>Cim4j</mainClass>
<mainClass>cim4j.main.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
</plugins>
</build>
</project>
229 changes: 0 additions & 229 deletions CGMES_2.4.15_27JAN2020/src/main/java/Cim4j.java

This file was deleted.

Loading