repositoties added
This commit is contained in:
@@ -10,11 +10,6 @@ build-job:
|
|||||||
stage: maven_build
|
stage: maven_build
|
||||||
image: maven:3.9.8-amazoncorretto-21-al2023
|
image: maven:3.9.8-amazoncorretto-21-al2023
|
||||||
script:
|
script:
|
||||||
- mvn dependency:tree
|
|
||||||
- echo ---------------------------------
|
|
||||||
- mvn help:effective-settings
|
|
||||||
- echo ---------------------------------
|
|
||||||
#- curl -v https://repo.spring.io/snapshot
|
|
||||||
- echo "Building the project..."
|
- echo "Building the project..."
|
||||||
- mvn clean install -DskipTests
|
- mvn clean install -DskipTests
|
||||||
- ls target/*.jar
|
- ls target/*.jar
|
||||||
|
|||||||
26
pom.xml
26
pom.xml
@@ -132,15 +132,23 @@
|
|||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>spring-milestones</id>
|
<id>spring-milestones</id>
|
||||||
<name>Spring Milestones</name>
|
<name>Spring Milestones</name>
|
||||||
<url>https://repo.spring.io/milestone</url>
|
<url>https://repo.spring.io/milestone</url>
|
||||||
<snapshots>
|
<snapshots>
|
||||||
<enabled>false</enabled>
|
<enabled>false</enabled>
|
||||||
</snapshots>
|
</snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
<repository>
|
||||||
|
<id>spring-snapshots</id>
|
||||||
|
<name>Spring Snapshots</name>
|
||||||
|
<url>https://repo.spring.io/snapshot</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|||||||
Reference in New Issue
Block a user