12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <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>cn.com.taiji</groupId>
- <artifactId>cn.com.taiji.dependencies</artifactId>
- <version>1.0.2</version>
- <packaging>pom</packaging>
- <organization>
- <name>taiji</name>
- <url>http://www.baidu.com</url>
- </organization>
- <developers>
- <developer>
- <id>taiji</id>
- <name>李杰智</name>
- <email>lijiezhi.ok@163.com</email>
- <organization>任我行</organization>
- <organizationUrl>http://www.baidu.com</organizationUrl>
- <roles>
- <role>Project lead</role>
- </roles>
- </developer>
- </developers>
- <properties>
- <hazelcast.version>3.2.2</hazelcast.version>
- <jquery.version>1.11.1</jquery.version>
- <jquery-ui.version>1.10.4</jquery-ui.version>
- <bootstrap.version>2.3.2</bootstrap.version>
- <kendo.version>2014.1.416</kendo.version>
- <openlayers.version>2.13.1</openlayers.version>
- <zjw.version>1.0.0</zjw.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.hazelcast</groupId>
- <artifactId>hazelcast-all</artifactId>
- <version>${hazelcast.version}</version>
- </dependency>
- <dependency>
- <groupId>org.webjars</groupId>
- <artifactId>jquery</artifactId>
- <version>${jquery.version}</version>
- </dependency>
- <dependency>
- <groupId>org.webjars</groupId>
- <artifactId>jquery-ui</artifactId>
- <version>${jquery-ui.version}</version>
- </dependency>
- <dependency>
- <groupId>org.webjars</groupId>
- <artifactId>bootstrap</artifactId>
- <version>${bootstrap.version}</version>
- </dependency>
- <dependency>
- <groupId>org.webjars</groupId>
- <artifactId>kendo</artifactId>
- <version>${kendo.version}</version>
- </dependency>
- <dependency>
- <groupId>org.webjars</groupId>
- <artifactId>openlayers</artifactId>
- <version>${openlayers.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.taiji</groupId>
- <artifactId>cn.com.taiji.sys</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.webjars</groupId>
- <artifactId>blue_theme</artifactId>
- <version>${zjw.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.taiji</groupId>
- <artifactId>cn.com.taiji.security</artifactId>
- <version>${zjw.version}</version>
- </dependency>
- <dependency>
- <groupId>org.webjars</groupId>
- <artifactId>jquery-form</artifactId>
- <version>3.28.0-2013.02.06-3</version>
- </dependency>
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>11.2.0.3</version>
- </dependency>
- <dependency>
- <groupId>cn.com.taiji</groupId>
- <artifactId>cn.com.taiji.system</artifactId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|