| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <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.bstek.urule</groupId>
- <artifactId>urule-parent</artifactId>
- <version>2.0.4</version>
- </parent>
- <artifactId>urule-console</artifactId>
- <version>2.1.6-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>com.bstek.urule</groupId>
- <artifactId>urule-core</artifactId>
- <version>2.1.6-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.apache.jackrabbit</groupId>
- <artifactId>jackrabbit-core</artifactId>
- <version>2.13.3</version>
- <exclusions>
- <exclusion>
- <artifactId>derby</artifactId>
- <groupId>org.apache.derby</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>javax.jcr</groupId>
- <artifactId>jcr</artifactId>
- <version>2.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity</artifactId>
- <version>1.7</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>3.16</version>
- </dependency>
- </dependencies>
- <licenses>
- <license>
- <name>The Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- </licenses>
- <developers>
- <developer>
- <name>Gaojie</name>
- <email>jacky.gao@bstek.com</email>
- <organization>Bstek</organization>
- <organizationUrl>http://www.bstek.com</organizationUrl>
- </developer>
- </developers>
- <scm>
- <connection>https://github.com/youseries/urule.git</connection>
- <developerConnection>https://github.com/youseries/urule.git</developerConnection>
- <url>https://github.com/youseries/urule</url>
- </scm>
- <organization>
- <name>Bstek</name>
- <url>http://www.bstek.com</url>
- </organization>
- <name>URule Console Project</name>
- <url>https://github.com/youseries/urule/tree/master/urule-console</url>
- </project>
|