Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoqnc committed Jul 3, 2024
1 parent 6842931 commit 76d2803
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 35 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,7 @@ jobs:
with:
java-version: '17'
distribution: 'temurin'
# server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
# settings-path: ${{ github.workspace }} # location for the settings.xml file

# - name: Run all tests
# run: mvn test
# - name: Build with Maven
# run: mvn -B package --file pom.xml

- name: Deploy to GitHub Packages
run: mvn deploy #-s $GITHUB_WORKSPACE/settings.xml
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ github.token }}
26 changes: 1 addition & 25 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<testSourceDirectory>src/test/java/com/ibm/plugin/rules</testSourceDirectory>
</properties>

<dependencies>
Expand All @@ -42,33 +41,10 @@
<scope>compile</scope>
</dependency>
<dependency>
<!-- TODO: This dependency is not explicitely needed, but having it allows the IDE to show errors in the bc test files -->
<!-- This dependency is not explicitely needed, but having it enables IDE linting in BouncyCastle test files -->
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.78.1</version>
</dependency>
</dependencies>

<!-- <build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>${basedir}/rule-graph/build-graph.sh</executable>
<workingDirectory>${basedir}/rule-graph</workingDirectory>
</configuration>
</plugin>
</plugins>
</build> -->

</project>
1 change: 0 additions & 1 deletion python/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<testSourceDirectory>src/test/java/com/ibm/plugin/rules</testSourceDirectory>
</properties>

<dependencies>
Expand Down

0 comments on commit 76d2803

Please sign in to comment.