3 Star 0 Fork 1

yaohk/skeleton

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 10.59 KB
一键复制 编辑 原始数据 按行查看 历史
yaohk 提交于 2019-02-14 11:45 . 初始导入
<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>
<groupId>com.cmti</groupId>
<artifactId>skeleton</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>skeleton</name>
<developers>
<developer>
<id>liyq</id>
<name>李颖强</name>
<organization>福州云动科技有限公司</organization>
<roles>
<role>项目负责</role>
<role>需求分析</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springframework.vesion>3.2.18.RELEASE</springframework.vesion>
<web.war-name>skeleton</web.war-name>
<db.driver.name>com.mysql.jdbc.Driver</db.driver.name>
<db.url>jdbc:mysql://localhost:3306/capps_local?characterEncoding=utf8&amp;useUnicode=true</db.url>
<db.user-name>root</db.user-name>
<db.password>root</db.password>
<image.preview.url>http://localhost:8080/cappsUploadFiles</image.preview.url>
<image.upload.path>C:\\NetBeansProjects\\cappsUploadFiles\\</image.upload.path>
<!-- <image.saving.name>savingImages</image.saving.name>
<image.removing.name>removingImages</image.removing.name>-->
<log.level>DEBUG</log.level>
<netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server>
<!--<web.xml>src/main/webconfig/web-dev.xml</web.xml>-->
</properties>
<profiles>
<profile>
<id>demo</id>
<properties>
<!-- <db.user-name>root</db.user-name>
<db.password>topway22f</db.password>
<db.url>jdbc:mysql://192.168.1.2:3306/capps_demo?characterEncoding=utf8&amp;useUnicode=true</db.url>-->
<image.preview.url>http://192.168.1.2:8080/cappsUploadFiles</image.preview.url>
<image.upload.path>/var/lib/tomcat6/webapps/cappsUploadFiles/</image.upload.path>
<log.level>DEBUG</log.level>
<web.xml>src/main/webapp/WEB-INF/web.xml</web.xml>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<db.user-name>root</db.user-name>
<db.password>topway22f</db.password>
<db.url>jdbc:mysql://localhost:3306/capps?characterEncoding=utf8&amp;useUnicode=true</db.url>
<image.preview.url>http://www.zhaohaowei.com/cappsUploadFiles</image.preview.url>
<image.upload.path>/var/tomcat6-zhw/webapps/cappsUploadFiles/</image.upload.path>
<log.level>INFO</log.level>
<web.xml>src/main/webapp/WEB-INF/web.xml</web.xml>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${springframework.vesion}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.15</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${springframework.vesion}</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.3</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${springframework.vesion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>3.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-lgpl</artifactId>
<version>1.9.5</version>
</dependency>
<dependency>
<groupId>com.cmti</groupId>
<artifactId>cmti-commons</artifactId>
<version>1.4.2</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.0.0</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.1</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.github.penggle</groupId>
<artifactId>kaptcha</artifactId>
<version>2.3.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.mobile</groupId>
<artifactId>spring-mobile-device</artifactId>
<version>1.0.1.RELEASE</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.8</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<finalName>${web.war-name}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<escapeString>\</escapeString>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<webXml>${web.xml}</webXml>
</configuration>
</plugin>
<plugin>
<groupId>org.mybatis.maven</groupId>
<artifactId>migrations-maven-plugin</artifactId>
<version>1.1.3</version>
<configuration>
<repository>src/main/db</repository>
</configuration>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.15</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>apply-all-pending-migration</id>
<phase>validate</phase>
<goals>
<goal>up</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.5</version>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.15</version>
</dependency>
</dependencies>
</plugin>
</plugins>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/yaohk/skeleton.git
git@gitee.com:yaohk/skeleton.git
yaohk
skeleton
skeleton
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385