Skip to content

Commit c1a90bf

Browse files
committed
Deployment
1 parent cba6c3d commit c1a90bf

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@ manifest.mf
6060

6161
working-dir/
6262
/.idea/
63+
/.mvn/maven.config
64+
/.mvn/settings.xml

pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<groupId>xyz.refinedev.phoenix</groupId>
1616
<artifactId>pxAPI</artifactId>
17-
<version>1.7.5.1</version>
17+
<version>1.8</version>
1818

1919
<properties>
2020
<maven.compiler.source>1.8</maven.compiler.source>
@@ -33,6 +33,13 @@
3333
</repository>
3434
</repositories>
3535

36+
<distributionManagement>
37+
<repository>
38+
<id>refine-public</id>
39+
<url>https://maven.refinedev.xyz/public-repo</url>
40+
</repository>
41+
</distributionManagement>
42+
3643
<dependencies>
3744
<dependency>
3845
<groupId>com.velocitypowered</groupId>
@@ -89,6 +96,21 @@
8996
<source>${maven.compiler.source}</source>
9097
</configuration>
9198
</plugin>
99+
<plugin>
100+
<groupId>org.apache.maven.plugins</groupId>
101+
<artifactId>maven-source-plugin</artifactId>
102+
<version>3.3.1</version>
103+
<executions>
104+
<execution>
105+
<id>attach-sources</id>
106+
<!-- Attach the source JAR in the package phase -->
107+
<phase>package</phase>
108+
<goals>
109+
<goal>jar</goal>
110+
</goals>
111+
</execution>
112+
</executions>
113+
</plugin>
92114
</plugins>
93115
</build>
94116
</project>

0 commit comments

Comments
 (0)