Update plugin parent artifacts

master
Captain Chaos 2019-02-10 17:01:02 +01:00
parent f1980cc9fd
commit 693e230afb
2 changed files with 101 additions and 0 deletions

2
PluginParent/deploy.cmd Normal file
View File

@ -0,0 +1,2 @@
@echo off
mvn clean gpg:sign deploy -DaltDeploymentRepository=ossrh-staging::default::https://oss.sonatype.org/service/local/staging/deploy/maven2

99
PluginParent/pom.xml Normal file
View File

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.pepsoft.worldpainter</groupId>
<artifactId>PluginParent</artifactId>
<version>1.2.2</version>
<packaging>pom</packaging>
<name>PluginParent</name>
<description>A WorldPainter plugin.</description>
<url>https://www.worldpainter.net/</url>
<licenses>
<license>
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<organization>pepsoft.org</organization>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/Captain-Chaos/WorldPainter.git</connection>
<url>https://github.com/Captain-Chaos/WorldPainter</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.pepsoft.worldpainter</groupId>
<artifactId>WPGUI</artifactId>
<version>2.5.8</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.pepsoft.worldpainter</groupId>
<artifactId>WPDynmapPreviewer</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge</groupId>
<artifactId>jpen</artifactId>
</exclusion>
<exclusion>
<groupId>com.jidesoft</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.netbeans.swing</groupId>
<artifactId>laf-dark</artifactId>
</exclusion>
<exclusion>
<groupId>com.nativelibs4java</groupId>
<artifactId>bridj</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>