File tree Expand file tree Collapse file tree 9 files changed +96
-3
lines changed Expand file tree Collapse file tree 9 files changed +96
-3
lines changed Original file line number Diff line number Diff line change 3434 java-package : jdk
3535 architecture : x64
3636 cache : ' maven'
37- server-id : ossrh # Value of the distributionManagement/repository/id field of the pom.xml
37+ server-id : central # Value of the distributionManagement/repository/id field of the pom.xml
3838 server-username : MAVEN_USERNAME
3939 server-password : MAVEN_PASSWORD
4040
5959 ]
6060
6161 - name : Deploy Release
62- run : mvn deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
62+ run : mvn deploy -DdeployRelease=true - DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
6363 shell : bash
6464 env :
6565 PGP_KEY_PASSWORD : ${{ secrets.PGP_KEY_PASSWORD }}
Original file line number Diff line number Diff line change @@ -454,4 +454,5 @@ test.log
454454! no2-v3.db
455455.diffblue
456456infer-out
457- secring.gpg
457+ secring.gpg
458+ .flattened-pom.xml
Original file line number Diff line number Diff line change 3333 <dependency >
3434 <groupId >org.dizitart</groupId >
3535 <artifactId >nitrite</artifactId >
36+ <version >${project.version} </version >
3637 </dependency >
3738 <dependency >
3839 <groupId >org.slf4j</groupId >
5152 <dependency >
5253 <groupId >org.dizitart</groupId >
5354 <artifactId >nitrite-mvstore-adapter</artifactId >
55+ <version >${project.version} </version >
5456 <scope >test</scope >
5557 </dependency >
5658 <dependency >
Original file line number Diff line number Diff line change 3333 <dependency >
3434 <groupId >org.dizitart</groupId >
3535 <artifactId >nitrite</artifactId >
36+ <version >${project.version} </version >
3637 </dependency >
3738 <dependency >
3839 <groupId >org.slf4j</groupId >
Original file line number Diff line number Diff line change 3333 <dependency >
3434 <groupId >org.dizitart</groupId >
3535 <artifactId >nitrite</artifactId >
36+ <version >${project.version} </version >
3637 </dependency >
3738 <dependency >
3839 <groupId >org.slf4j</groupId >
Original file line number Diff line number Diff line change 3333 <dependency >
3434 <groupId >org.dizitart</groupId >
3535 <artifactId >nitrite</artifactId >
36+ <version >${project.version} </version >
3637 </dependency >
3738 <dependency >
3839 <groupId >org.slf4j</groupId >
6061 <dependency >
6162 <groupId >org.dizitart</groupId >
6263 <artifactId >nitrite-mvstore-adapter</artifactId >
64+ <version >${project.version} </version >
6365 <scope >test</scope >
6466 </dependency >
6567 <dependency >
Original file line number Diff line number Diff line change 3333 <dependency >
3434 <groupId >org.dizitart</groupId >
3535 <artifactId >nitrite</artifactId >
36+ <version >${project.version} </version >
3637 </dependency >
3738 <dependency >
3839 <groupId >org.dizitart</groupId >
3940 <artifactId >nitrite-spatial</artifactId >
41+ <version >${project.version} </version >
4042 </dependency >
4143 <dependency >
4244 <groupId >com.fasterxml.jackson.core</groupId >
5658 <dependency >
5759 <groupId >org.dizitart</groupId >
5860 <artifactId >nitrite-mvstore-adapter</artifactId >
61+ <version >${project.version} </version >
5962 <scope >test</scope >
6063 </dependency >
6164 <dependency >
6265 <groupId >org.dizitart</groupId >
6366 <artifactId >nitrite-jackson-mapper</artifactId >
67+ <version >${project.version} </version >
6468 <scope >test</scope >
6569 </dependency >
6670 <dependency >
Original file line number Diff line number Diff line change 583583 <skip >false</skip >
584584 </configuration >
585585 </plugin >
586+ <plugin >
587+ <groupId >org.apache.maven.plugins</groupId >
588+ <artifactId >maven-gpg-plugin</artifactId >
589+ </plugin >
590+ <plugin >
591+ <groupId >org.codehaus.mojo</groupId >
592+ <artifactId >flatten-maven-plugin</artifactId >
593+ <version >1.7.2</version >
594+ <configuration >
595+ <updatePomFile >true</updatePomFile >
596+ <flattenMode >oss</flattenMode >
597+ </configuration >
598+ <executions >
599+ <execution >
600+ <id >flatten</id >
601+ <phase >process-resources</phase >
602+ <goals >
603+ <goal >flatten</goal >
604+ </goals >
605+ </execution >
606+ <execution >
607+ <id >flatten.clean</id >
608+ <phase >clean</phase >
609+ <goals >
610+ <goal >clean</goal >
611+ </goals >
612+ </execution >
613+ </executions >
614+ </plugin >
586615 </plugins >
587616 </build >
588617 <distributionManagement >
592621 </snapshotRepository >
593622 </distributionManagement >
594623 </profile >
624+ <profile >
625+ <id >releases</id >
626+ <activation >
627+ <property >
628+ <name >deployReleases</name >
629+ </property >
630+ </activation >
631+ <build >
632+ <plugins >
633+ <plugin >
634+ <groupId >org.apache.maven.plugins</groupId >
635+ <artifactId >maven-deploy-plugin</artifactId >
636+ <version >3.1.4</version >
637+ <configuration >
638+ <skip >false</skip >
639+ </configuration >
640+ </plugin >
641+ <plugin >
642+ <groupId >org.apache.maven.plugins</groupId >
643+ <artifactId >maven-gpg-plugin</artifactId >
644+ </plugin >
645+ <plugin >
646+ <groupId >org.codehaus.mojo</groupId >
647+ <artifactId >flatten-maven-plugin</artifactId >
648+ <version >1.7.2</version >
649+ <configuration >
650+ <updatePomFile >true</updatePomFile >
651+ <flattenMode >oss</flattenMode >
652+ </configuration >
653+ <executions >
654+ <execution >
655+ <id >flatten</id >
656+ <phase >process-resources</phase >
657+ <goals >
658+ <goal >flatten</goal >
659+ </goals >
660+ </execution >
661+ <execution >
662+ <id >flatten.clean</id >
663+ <phase >clean</phase >
664+ <goals >
665+ <goal >clean</goal >
666+ </goals >
667+ </execution >
668+ </executions >
669+ </plugin >
670+ </plugins >
671+ </build >
672+ </profile >
595673 </profiles >
596674
597675</project >
Original file line number Diff line number Diff line change 3434 <dependency >
3535 <groupId >org.dizitart</groupId >
3636 <artifactId >nitrite</artifactId >
37+ <version >${project.version} </version >
3738 </dependency >
3839 <dependency >
3940 <groupId >org.dizitart</groupId >
4041 <artifactId >nitrite-spatial</artifactId >
42+ <version >${project.version} </version >
4143 </dependency >
4244 <dependency >
4345 <groupId >org.dizitart</groupId >
4446 <artifactId >nitrite-jackson-mapper</artifactId >
47+ <version >${project.version} </version >
4548 </dependency >
4649 <dependency >
4750 <groupId >com.fasterxml.jackson.core</groupId >
9598 <dependency >
9699 <groupId >org.dizitart</groupId >
97100 <artifactId >nitrite-mvstore-adapter</artifactId >
101+ <version >${project.version} </version >
98102 <scope >test</scope >
99103 </dependency >
100104 <dependency >
You can’t perform that action at this time.
0 commit comments