|
@@ -0,0 +1,37 @@
|
|
|
|
|
+<?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/maven-v4_0_0.xsd">
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <artifactId>class-winter</artifactId>
|
|
|
|
|
+ <groupId>com.idea-aedi</groupId>
|
|
|
|
|
+ <version>1.0.0</version>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+ <artifactId>class-winter-core</artifactId>
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
+ <version>3.0.0</version>
|
|
|
|
|
+ <executions>
|
|
|
|
|
+ <execution>
|
|
|
|
|
+ <phase>package</phase>
|
|
|
|
|
+ <goals>
|
|
|
|
|
+ <goal>shade</goal>
|
|
|
|
|
+ </goals>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <transformers>
|
|
|
|
|
+ <transformer>
|
|
|
|
|
+ <manifestEntries>
|
|
|
|
|
+ <Main-Class>winter.com.ideaaedi.classwinter.Forward</Main-Class>
|
|
|
|
|
+ <Premain-Class>winter.com.ideaaedi.classwinter.Reverses</Premain-Class>
|
|
|
|
|
+ </manifestEntries>
|
|
|
|
|
+ </transformer>
|
|
|
|
|
+ </transformers>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </execution>
|
|
|
|
|
+ </executions>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
|
|
+</project>
|
|
|
|
|
+
|