You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?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>dev.gwm.spongeplugin</groupId>
- <artifactId>cosmetics</artifactId>
- <version>1.5.3</version>
- <name>Cosmetics</name>
- <packaging>jar</packaging>
-
- <repositories>
- <repository>
- <!--spongeapi-->
- <id>sponge</id>
- <url>http://repo.spongepowered.org/maven</url>
- </repository>
- <repository>
- <!--library-->
- <id>gwmdev</id>
- <url>https://maven.gwm.dev</url>
- </repository>
- </repositories>
-
- <dependencies>
- <dependency>
- <groupId>org.spongepowered</groupId>
- <artifactId>spongeapi</artifactId>
- <version>7.1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>dev.gwm.spongeplugin</groupId>
- <artifactId>library</artifactId>
- <version>2.5.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.leego</groupId>
- <artifactId>banana</artifactId>
- <version>1.2.1</version>
- </dependency>
- </dependencies>
-
- <properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- </properties>
-
- <build>
- <finalName>${project.name} ${project.version}</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.2.1</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <artifactSet>
- <includes>
- <include>io.leego:banana</include>
- </includes>
- </artifactSet>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|