| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <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">
- <parent>
- <artifactId>jnpf-datareport</artifactId>
- <groupId>com.jnpf</groupId>
- <version>6.0.0-RELEASE</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>ureport2-console</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.jnpf</groupId>
- <artifactId>ureport2-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jnpf</groupId>
- <artifactId>ureport2-font</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jnpf</groupId>
- <artifactId>jnpf-common-security</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <licenses>
- <license>
- <name>The Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- </licenses>
- <developers>
- <developer>
- <name>Gaojie</name>
- <email>@bstek.com</email>
- <organization>Bstek</organization>
- <organizationUrl>http://www.bstek.com</organizationUrl>
- </developer>
- </developers>
- <scm>
- <connection>https://github.com/youseries/ureport.git</connection>
- <developerConnection>https://github.com/youseries/ureport.git</developerConnection>
- <url>https://github.com/youseries/ureport</url>
- </scm>
- <organization>
- <name>Bstek</name>
- <url>http://www.bstek.com</url>
- </organization>
- <name>UReport2 Console Project</name>
- <url>https://github.com/youseries/ureport/tree/master/ureport2-console</url>
- <build>
- <finalName>jnpf-datareport-${project.version}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!-- 指定该Main Class为全局的唯一入口 -->
- <mainClass>com.bstek.ureport.console.DataReportApplication</mainClass>
- <layout>ZIP</layout>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|