File tree Expand file tree Collapse file tree 3 files changed +2
-35
lines changed Expand file tree Collapse file tree 3 files changed +2
-35
lines changed Original file line number Diff line number Diff line change 25
25
with :
26
26
java-version : ' 17'
27
27
distribution : ' temurin'
28
- # server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
29
- # settings-path: ${{ github.workspace }} # location for the settings.xml file
30
-
31
- # - name: Run all tests
32
- # run: mvn test
33
- # - name: Build with Maven
34
- # run: mvn -B package --file pom.xml
35
-
36
28
- name : Deploy to GitHub Packages
37
- run : mvn deploy # -s $GITHUB_WORKSPACE/settings.xml
29
+ run : mvn --batch-mode deploy
38
30
env :
39
31
GITHUB_TOKEN : ${{ github.token }}
Original file line number Diff line number Diff line change 15
15
<maven .compiler.source>17</maven .compiler.source>
16
16
<maven .compiler.target>17</maven .compiler.target>
17
17
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
18
- <testSourceDirectory >src/test/java/com/ibm/plugin/rules</testSourceDirectory >
19
18
</properties >
20
19
21
20
<dependencies >
42
41
<scope >compile</scope >
43
42
</dependency >
44
43
<dependency >
45
- <!-- TODO: This dependency is not explicitely needed, but having it allows the IDE to show errors in the bc test files -->
44
+ <!-- This dependency is not explicitely needed, but having it enables IDE linting in BouncyCastle test files -->
46
45
<groupId >org.bouncycastle</groupId >
47
46
<artifactId >bcpkix-jdk18on</artifactId >
48
47
<version >1.78.1</version >
49
48
</dependency >
50
49
</dependencies >
51
-
52
- <!-- <build>
53
- <plugins>
54
- <plugin>
55
- <groupId>org.codehaus.mojo</groupId>
56
- <artifactId>exec-maven-plugin</artifactId>
57
- <version>3.3.0</version>
58
- <executions>
59
- <execution>
60
- <phase>install</phase>
61
- <goals>
62
- <goal>exec</goal>
63
- </goals>
64
- </execution>
65
- </executions>
66
- <configuration>
67
- <executable>${basedir}/rule-graph/build-graph.sh</executable>
68
- <workingDirectory>${basedir}/rule-graph</workingDirectory>
69
- </configuration>
70
- </plugin>
71
- </plugins>
72
- </build> -->
73
-
74
50
</project >
Original file line number Diff line number Diff line change 15
15
<maven .compiler.source>17</maven .compiler.source>
16
16
<maven .compiler.target>17</maven .compiler.target>
17
17
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
18
- <testSourceDirectory >src/test/java/com/ibm/plugin/rules</testSourceDirectory >
19
18
</properties >
20
19
21
20
<dependencies >
You can’t perform that action at this time.
0 commit comments