-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f63f09c
commit 895d809
Showing
179 changed files
with
6,828 additions
and
1,973 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Build Release | |
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,19 +8,16 @@ | |
|
||
<name>ModUpdater</name> | ||
<description>Java app to update your minecraft mods</description> | ||
<url>http://kodipi.fritz.box/ModUpdater</url> | ||
<url>https://miniontoby.github.io/ModUpdater</url> | ||
<organization> | ||
<name>TheDutchProgrammers</name> | ||
<url></url> | ||
</organization> | ||
<developers> | ||
<developer> | ||
<id>miniontoby</id> | ||
<name>Miniontoby</name> | ||
<email>[email protected]</email> | ||
<url></url> | ||
<organization>TheDutchProgrammers</organization> | ||
<organizationUrl></organizationUrl> | ||
<roles> | ||
<role>developer</role> | ||
</roles> | ||
|
@@ -31,13 +28,11 @@ | |
</developer> | ||
</developers> | ||
|
||
<licenses> | ||
</licenses> | ||
|
||
<distributionManagement> | ||
<site> | ||
<id>website</id> | ||
<url>file:///var/www/html/ModUpdater/</url> | ||
<id>github</id> | ||
<url>scm:git:[email protected]:Miniontoby/ModUpdater.git</url> | ||
<!--<url>file:///var/www/html/ModUpdater/</url>--> | ||
</site> | ||
<repository> | ||
<id>github</id> | ||
|
@@ -69,15 +64,13 @@ | |
<artifactId>gson</artifactId> | ||
<version>2.8.9</version> | ||
<scope>compile</scope> | ||
<optional>false</optional> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.9.0</version> | ||
<scope>compile</scope> | ||
<optional>false</optional> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
@@ -127,10 +120,7 @@ | |
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.8.2</version> | ||
<configuration> | ||
<!--<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>--> | ||
<!--<altDeploymentRepository>github::default::https://maven.pkg.github.com/Miniontoby/ModUpdater</altDeploymentRepository>--> | ||
</configuration> | ||
<configuration></configuration> | ||
</plugin> | ||
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> | ||
<plugin> | ||
|
@@ -181,9 +171,25 @@ | |
<tagNameFormat>@{project.version}</tagNameFormat> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-scm-publish-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<configuration> | ||
<scmBranch>gh-pages</scmBranch> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-project-info-reports-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
<scm> | ||
<connection>scm:git:${project.scm.url}</connection> | ||
<developerConnection>scm:git:${project.scm.url}</developerConnection> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
|
||
|
||
# mvn archetype:generate -DgroupId=com.miniontoby -DartifactId=modupdater -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site -DarchetypeVersion=1.4 -DinteractiveMode=false | ||
mvn clean site site:stage scm-publish:publish-scm |
Oops, something went wrong.