| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?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">
- <parent>
- <artifactId>happyjob-parent</artifactId>
- <groupId>com.happyjob</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>happy-job-base-common</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <!-- 项目属性 -->
- <properties>
- <lib.path>${basedir}/src/main/webapp/WEB-INF/lib</lib.path>
- </properties>
- <build>
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- </resources>
- </build>
- <dependencies>
- <dependency>
- <groupId>QRCoder</groupId>
- <artifactId>QRCoder</artifactId>
- <version>1.0</version>
- <systemPath>${lib.path}/QRCode.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>ojdbc14</groupId>
- <artifactId>ojdbc14</artifactId>
- <version>10.2.0.3.0</version>
- <systemPath>${lib.path}/ojdbc14-10.2.0.3.0.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>batik</groupId>
- <artifactId>batik-util</artifactId>
- <version>1.6-1</version>
- <systemPath>${lib.path}/batik-util-1.7.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <!-- 中文分词 -->
- <dependency>
- <groupId>org.wltea</groupId>
- <artifactId>analyzer</artifactId>
- <version>2012_u6</version>
- <systemPath>${lib.path}/analyzer-2012_u6.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>gencode</groupId>
- <artifactId>gencode</artifactId>
- <version>2.0</version>
- <systemPath>${lib.path}/org.jeeframework.gencode-2.0-tomcat7.0.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>jeewx</groupId>
- <artifactId>jeewx</artifactId>
- <version>1.0</version>
- <systemPath>${lib.path}/jeewx-api-1.2.0-20180330.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>commons-lang-2.5.jar</groupId>
- <artifactId>commons-lang-2.5.jar</artifactId>
- <version>1.0.0</version>
- <systemPath>${lib.path}/commons-lang-2.5.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <!--阿里云图片服务-->
- <dependency>
- <groupId>com.aliyun.core</groupId>
- <artifactId>aliyun-sdk-core</artifactId>
- <version>1.0</version>
- <systemPath>${lib.path}/aliyun-java-sdk-core-2.1.7.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>com.aliyun.sts</groupId>
- <artifactId>aliyun-sdk-sts</artifactId>
- <version>1.0</version>
- <systemPath>${lib.path}/aliyun-java-sdk-sts-2.1.6.jar</systemPath>
- <scope>system</scope>
- </dependency>
- </dependencies>
- </project>
|