Skip to content

Commit 76d2803

Browse files
committed
cleaning
1 parent 6842931 commit 76d2803

File tree

3 files changed

+2
-35
lines changed

3 files changed

+2
-35
lines changed

.github/workflows/maven-publish.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,7 @@ jobs:
2525
with:
2626
java-version: '17'
2727
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-
3628
- name: Deploy to GitHub Packages
37-
run: mvn deploy #-s $GITHUB_WORKSPACE/settings.xml
29+
run: mvn --batch-mode deploy
3830
env:
3931
GITHUB_TOKEN: ${{ github.token }}

java/pom.xml

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<maven.compiler.source>17</maven.compiler.source>
1616
<maven.compiler.target>17</maven.compiler.target>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18-
<testSourceDirectory>src/test/java/com/ibm/plugin/rules</testSourceDirectory>
1918
</properties>
2019

2120
<dependencies>
@@ -42,33 +41,10 @@
4241
<scope>compile</scope>
4342
</dependency>
4443
<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 -->
4645
<groupId>org.bouncycastle</groupId>
4746
<artifactId>bcpkix-jdk18on</artifactId>
4847
<version>1.78.1</version>
4948
</dependency>
5049
</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-
7450
</project>

python/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<maven.compiler.source>17</maven.compiler.source>
1616
<maven.compiler.target>17</maven.compiler.target>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18-
<testSourceDirectory>src/test/java/com/ibm/plugin/rules</testSourceDirectory>
1918
</properties>
2019

2120
<dependencies>

0 commit comments

Comments
 (0)