File tree Expand file tree Collapse file tree 7 files changed +21
-6
lines changed
main/java/com/appxiom/ax/tuple
test/java/com/appxiom/ax/tuple/test Expand file tree Collapse file tree 7 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 1515
1616permissions :
1717 contents : write
18+ packages : write
1819
1920jobs :
2021 build :
@@ -27,10 +28,16 @@ jobs:
2728 with :
2829 java-version : " 17"
2930 distribution : " temurin"
31+ server-id : github
3032 cache : maven
3133 - name : Build with Maven
3234 run : mvn -B package --file pom.xml
3335
36+ - name : Publish to GitHub Packages
37+ run : mvn deploy -DskipTests
38+ env :
39+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40+
3441 - name : Create Release
3542 uses : softprops/action-gh-release@v2
3643 with :
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Add the following dependency to your `pom.xml`:
2525<dependency >
2626 <groupId >com.appxiom.ax.tuple</groupId >
2727 <artifactId >ax-tuple</artifactId >
28- <version >1.0.1 </version >
28+ <version >1.0.2 </version >
2929</dependency >
3030```
3131
Original file line number Diff line number Diff line change 66
77 <groupId >com.appxiom.ax.tuple</groupId >
88 <artifactId >ax-tuple</artifactId >
9- <version >1.0.1</version >
9+ <version >1.0.2</version >
10+
11+ <distributionManagement >
12+ <repository >
13+ <id >github</id >
14+ <name >GitHub Packages</name >
15+ <url >https://maven.pkg.github.com/basilgregory/ax-tuple-java</url >
16+ </repository >
17+ </distributionManagement >
1018
1119 <properties >
1220 <maven .compiler.source>17</maven .compiler.source>
Original file line number Diff line number Diff line change 22 * A named tuple implementation for Java that stores elements as key-value pairs using a Map.
33 *
44 * @author Robin Panicker
5- * @version 1.0.1
5+ * @version 1.0.2
66 * @since 0.1.0
77 *
88 */
Original file line number Diff line number Diff line change 22 * A simple immutable Tuple implementation for Java that can hold an arbitrary number of elements.
33 *
44 * @author Robin Panicker
5- * @version 1.0.1
5+ * @version 1.0.2
66 * @since 0.1.0
77 */
88package com .appxiom .ax .tuple ;
Original file line number Diff line number Diff line change 1111/**
1212 * Unit tests for the NamedTuple class.
1313 *
14- * @version 1.0.1
14+ * @version 1.0.2
1515 * @since 0.1.0
1616 */
1717public class NamedTupleTest {
Original file line number Diff line number Diff line change 1111/**
1212 * Unit tests for the Tuple class.
1313 *
14- * @version 1.0.1
14+ * @version 1.0.2
1515 * @since 0.1.0
1616 */
1717public class TupleTest {
You can’t perform that action at this time.
0 commit comments