123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.fdkankan.model</groupId>
- <artifactId>4dkankan-utils-model-demo</artifactId>
- <name>4dkankan-utils-model-demo</name>
- <version>1.0-SNAPSHOT</version>
- <url>http://www.example.com</url>
- <build>
- <finalName>${artifactId}</finalName>
- <plugins>
- <plugin>
- <artifactId>maven-shade-plugin</artifactId>
- <version>2.4.1</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <transformers>
- <transformer>
- <mainClass>com.fdkankan.modeldemo.utils.CutImgUtil</mainClass>
- </transformer>
- </transformers>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>8</source>
- <target>8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>releases</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
- </repository>
- <repository>
- <id>snapshots</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
- </repository>
- <repository>
- <id>nexus-aliyun</id>
- <url>http://maven.aliyun.com/nexus/content/groups/public</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.20</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
- </repository>
- <snapshotRepository>
- <id>snapshots</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- <properties>
- <maven.compiler.source>1.7</maven.compiler.source>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.target>1.7</maven.compiler.target>
- </properties>
- </project>
|