123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- <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>
- <parent>
- <groupId>com.hnshituo</groupId>
- <artifactId>core-fs-lib</artifactId>
- <version>5.0.20</version>
- </parent>
- <artifactId>xinsteel.maketx</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>war</packaging>
- <!-- 这里必须配置,不然生成的项目的配置文件会有编码问题 -->
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <profiles>
- <!-- 开发环境 -->
- <profile>
- <id>dev</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <properties>
- <profiles.active>dev</profiles.active>
- <deploy.url>http://localhost:8080/manager/text</deploy.url>
- <deploy.username>tomcat</deploy.username>
- <deploy.password>tomcat</deploy.password>
- </properties>
- </profile>
- <!-- 测试环境 -->
- <profile>
- <id>test</id>
- <properties>
- <profiles.active>test</profiles.active>
- <deploy.url>http://localhost:8080/manager/text</deploy.url>
- <deploy.username>tomcat</deploy.username>
- <deploy.password>tomcat</deploy.password>
- </properties>
- </profile>
- <!-- 仿真环境 -->
- <profile>
- <id>simu</id>
- <properties>
- <profiles.active>simu</profiles.active>
- <deploy.url>http://localhost:8080/manager/text</deploy.url>
- <deploy.username>tomcat</deploy.username>
- <deploy.password>tomcat</deploy.password>
- </properties>
- </profile>
- <!-- 生产环境 -->
- <profile>
- <id>prd</id>
- <properties>
- <profiles.active>prd</profiles.active>
- <deploy.url>http://localhost:8080/manager/text</deploy.url>
- <deploy.username>tomcat</deploy.username>
- <deploy.password>tomcat</deploy.password>
- </properties>
- </profile>
- <profile>
- <id>prd2</id>
- <properties>
- <profiles.active>prd2</profiles.active>
- <deploy.url>http://localhost:8080/manager/text</deploy.url>
- <deploy.username>tomcat</deploy.username>
- <deploy.password>tomcat</deploy.password>
- </properties>
- </profile>
- </profiles>
- <build>
- <finalName>xinsteel.maketx</finalName>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <!-- 资源根目录排除各环境的配置,使用单独的资源目录来指定 -->
- <excludes>
- <exclude>dev/*</exclude>
- <exclude>test/*</exclude>
- <exclude>prd/*</exclude>
- <exclude>prd2/*</exclude>
- </excludes>
- </resource>
- <resource>
- <directory>src/main/resources/${profiles.active}</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <version>2.5</version>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>tomcat-maven-plugin</artifactId>
- <!-- <version>1.2-SNAPSHOT</version> -->
- <configuration>
- <server>tomcat</server>
- <url>${deploy.url}</url>
- <username>${deploy.username}</username>
- <password>${deploy.password}</password>
- <path>/xinsteel.maketx</path>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>com.hynnet</groupId>
- <artifactId>jxl</artifactId>
- <version>2.6.12.1</version>
- </dependency>
- <dependency>
- <groupId>bsh</groupId>
- <artifactId>bsh</artifactId>
- <version>1.3.0</version>
- </dependency>
- <dependency>
- <groupId>weld-osgi-bundle</groupId>
- <artifactId>weld-osgi-bundle</artifactId>
- <version>3.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.artofsolving</groupId>
- <artifactId>jodconverter</artifactId>
- <version>2.2.2</version>
- </dependency>
- <dependency>
- <groupId>icore-file-service</groupId>
- <artifactId>icore-file-service</artifactId>
- <version>1.0.323</version>
- </dependency>
- <dependency>
- <groupId>com.thetransactioncompany</groupId>
- <artifactId>cors-filter</artifactId>
- <version>1.7</version>
- </dependency>
- <dependency>
- <groupId>com.thetransactioncompany</groupId>
- <artifactId>java-property-utils</artifactId>
- <version>1.9</version>
- </dependency>
-
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.2.2</version>
- </dependency>
- <dependency>
- <groupId>com.hnshituo.other</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>net.bull.javamelody</groupId>
- <artifactId>javamelody-core</artifactId>
- <version>1.61.0</version>
- </dependency>
- <dependency>
- <groupId>com.thetransactioncompany</groupId>
- <artifactId>cors-filter</artifactId>
- <version>1.7</version>
- </dependency>
- <dependency>
- <groupId>com.thetransactioncompany</groupId>
- <artifactId>java-property-utils</artifactId>
- <version>1.9</version>
- </dependency>
- <!-- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc</artifactId>
- <version>11.2.0.1.0</version>
- </dependency> -->
- <dependency>
- <groupId>commons-dbcp</groupId>
- <artifactId>commons-dbcp</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-pool</groupId>
- <artifactId>commons-pool</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>axis</groupId>
- <artifactId>axis</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>jaxrpc</groupId>
- <artifactId>jaxrpc</artifactId>
- <version>1.1</version>
- </dependency>
- <dependency>
- <groupId>commons-discovery</groupId>
- <artifactId>commons-discovery</artifactId>
- <version>0.2</version>
- </dependency>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>1.4.1</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.3.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml-schemas</artifactId>
- <version>3.17</version>
- </dependency>
- <dependency>
- <groupId>fakepath</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>3.17</version>
- </dependency>
- <dependency>
- <groupId>fakepath</groupId>
- <artifactId>poi</artifactId>
- <version>3.17</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-collections4</artifactId>
- <version>4.1</version>
- </dependency>
- <dependency>
- <groupId>dom4j</groupId>
- <artifactId>dom4j</artifactId>
- <version>1.6.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.xmlbeans</groupId>
- <artifactId>xmlbeans</artifactId>
- <version>2.6.0</version>
- </dependency>
- <dependency>
- <groupId>stax</groupId>
- <artifactId>stax-api</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.geronimo.specs</groupId>
- <artifactId>geronimo-stax-api_1.0_spec</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-scratchpad</artifactId>
- <version>3.17</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-excelant</artifactId>
- <version>3.17</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- <version>3.3.0</version>
- </dependency>
- <dependency>
- <groupId>qrcode</groupId>
- <artifactId>qrcode-api</artifactId>
- <version>3.0</version>
- </dependency>
- <dependency>
- <groupId>com.aspose</groupId>
- <artifactId>aspose-cells</artifactId>
- <version>8.5.2</version>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.3</version>
- </dependency>
-
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>5.1.6</version>
- </dependency>
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itextpdf</artifactId>
- <version>5.5.6</version>
- </dependency>
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itext-asian</artifactId>
- <version>5.2.0</version>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.47</version>
- </dependency>
-
- </dependencies>
-
-
- </project>
|