Skip to content

Commit

Permalink
minus
Browse files Browse the repository at this point in the history
  • Loading branch information
仟弋 committed Nov 27, 2024
1 parent 4462a9f commit f099142
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-jdk21.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
EOF
- name: Build
run: |
mvn clean install -P '!toolchain'
mvn clean install -P '!toolchain' -Papache-build
35 changes: 23 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,12 @@ under the License.
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
Expand Down Expand Up @@ -312,17 +318,22 @@ under the License.
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>apache-build</id>
<repositories>
<repository>
<id>apache-releases</id>
<name>apache releases</name>
<url>https://repository.apache.org/content/repositories/releases/</url>
</repository>
<repository>
<id>apache-snapshots</id>
<name>apache snapshots</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
</repository>
</repositories>
</profile>
</profiles>

<repositories>
<repository>
<id>apache-releases</id>
<name>apache releases</name>
<url>https://repository.apache.org/content/repositories/releases/</url>
</repository>
<repository>
<id>apache-snapshots</id>
<name>apache snapshots</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>

0 comments on commit f099142

Please sign in to comment.