Compare commits
11 Commits
dev
...
88fdc79c82
| Author | SHA1 | Date | |
|---|---|---|---|
| 88fdc79c82 | |||
| 571ed377a8 | |||
| 6b84af1f16 | |||
| 4302084b95 | |||
| 4f8054dc94 | |||
| 5c1e1ee52c | |||
| 01074e1ac2 | |||
| 1b60210c06 | |||
| 2290ac5ecf | |||
| 6101e8d462 | |||
| aaea3a218b |
@@ -28,7 +28,7 @@ jobs:
|
|||||||
echo "Running test suite..."
|
echo "Running test suite..."
|
||||||
- name: Build project
|
- name: Build project
|
||||||
run: |
|
run: |
|
||||||
mvn -B -DskipTests clean package source:jar javadoc:jar
|
mvn -B -DskipTests clean verify
|
||||||
- name: Deploy to Nexus
|
- name: Deploy to Nexus
|
||||||
if: success()
|
if: success()
|
||||||
run: |
|
run: |
|
||||||
@@ -59,15 +59,11 @@ jobs:
|
|||||||
echo "Missing build artifacts in target"
|
echo "Missing build artifacts in target"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
mvn -B deploy:deploy-file \
|
mvn -B -DskipTests deploy \
|
||||||
-Dfile="$main_jar" \
|
|
||||||
-Dsources="$sources_jar" \
|
|
||||||
-Djavadoc="$javadoc_jar" \
|
|
||||||
-DpomFile="./pom.xml" \
|
|
||||||
-Durl="https://nexus.imyeyu.com/repository/maven-releases/" \
|
|
||||||
-DrepositoryId="timi-nexus" \
|
|
||||||
-Dhttps.protocols=TLSv1.2 \
|
-Dhttps.protocols=TLSv1.2 \
|
||||||
-Djdk.tls.client.protocols=TLSv1.2
|
-Djdk.tls.client.protocols=TLSv1.2 \
|
||||||
|
-Dmaven.wagon.http.retryHandler.count=3 \
|
||||||
|
-Dmaven.wagon.rto=1800000
|
||||||
- name: Create release
|
- name: Create release
|
||||||
if: ${{ success() && startsWith(github.event.pull_request.title, 'v') }}
|
if: ${{ success() && startsWith(github.event.pull_request.title, 'v') }}
|
||||||
env:
|
env:
|
||||||
|
|||||||
22
pom.xml
22
pom.xml
@@ -27,6 +27,15 @@
|
|||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<version>3.3.1</version>
|
<version>3.3.1</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
@@ -64,20 +73,29 @@
|
|||||||
<charset>UTF-8</charset>
|
<charset>UTF-8</charset>
|
||||||
<docencoding>UTF-8</docencoding>
|
<docencoding>UTF-8</docencoding>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>timi_nexus</id>
|
<id>timi-nexus</id>
|
||||||
<url>https://nexus.imyeyu.com/repository/maven-releases/</url>
|
<url>https://nexus.imyeyu.com/repository/maven-releases/</url>
|
||||||
</repository>
|
</repository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>timi_nexus</id>
|
<id>timi-nexus</id>
|
||||||
<url>https://nexus.imyeyu.com/repository/maven-public/</url>
|
<url>https://nexus.imyeyu.com/repository/maven-public/</url>
|
||||||
<releases>
|
<releases>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
|
|||||||
Reference in New Issue
Block a user