加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.17 KB
一键复制 编辑 原始数据 按行查看 历史
wangjianbing 提交于 2014-04-25 14:53 . comit
<?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>
<parent>
<groupId>org.openkoala.opencis</groupId>
<artifactId>koala-opencis</artifactId>
<version>3.0.0-SNAPSHOT</version>
</parent>
<groupId>org.openkoala.openci</groupId>
<artifactId>koala-openci-platform</artifactId>
<packaging>pom</packaging>
<name>koala-openci-platform</name>
<description>Open Continuous Integration Platform</description>
<modules>
<module>openci-platform-conf</module>
<module>openci-platform-domain</module>
<module>openci-platform-application</module>
<module>openci-platform-applicationImpl</module>
<module>openci-platform-infra</module>
<module>openci-platform-web</module>
</modules>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<id>mysql</id>
<properties>
<hibernate.hbm2ddl.auto>update</hibernate.hbm2ddl.auto>
<hibernate.show_sql>true</hibernate.show_sql>
<hibernate.dialect>org.hibernate.dialect.MySQL5Dialect</hibernate.dialect>
<db.jdbcDriver>com.mysql.jdbc.Driver</db.jdbcDriver>
<db.version>5.1.29</db.version>
<db.connectionURL><![CDATA[jdbc:mysql://127.0.0.1:3306/openci?createDatabaseIfNotExist=true&amp;useUnicode=true&amp;characterEncoding=utf-8]]></db.connectionURL>
<db.username>root</db.username>
<db.password></db.password>
<db.Type>MYSQL</db.Type>
<db.generateDdl>true</db.generateDdl>
<db.groupId>mysql</db.groupId>
<db.artifactId>mysql-connector-java</db.artifactId>
<generateDdl>true</generateDdl>
</properties>
</profile>
</profiles>
<build>
<plugins>
<!-- 排除WAR的Deploy -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化