|
@@ -0,0 +1,104 @@
|
|
|
|
|
+<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.bstek.urule</groupId>
|
|
|
|
|
+ <artifactId>urule-springboot</artifactId>
|
|
|
|
|
+ <version>0.0.1</version>
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <java.version>1.7</java.version>
|
|
|
|
|
+ <tomcat.version>8.5.5</tomcat.version>
|
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
+ </properties>
|
|
|
|
|
+ <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>
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
+ <version>1.4.1.RELEASE</version>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
|
+ <artifactId>tomcat-embed-jasper</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.bstek.urule</groupId>
|
|
|
|
|
+ <artifactId>urule-console</artifactId>
|
|
|
|
|
+ <version>2.0.1-SNAPSHOT</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>org.apache.derby</groupId>
|
|
|
|
|
+ <artifactId>derby</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
|
|
+ <artifactId>servlet-api</artifactId>
|
|
|
|
|
+ <version>2.5</version>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
|
|
+
|
|
|
|
|
+ <distributionManagement>
|
|
|
|
|
+ <snapshotRepository>
|
|
|
|
|
+ <id>ossrh</id>
|
|
|
|
|
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
+ </snapshotRepository>
|
|
|
|
|
+ <repository>
|
|
|
|
|
+ <id>ossrh</id>
|
|
|
|
|
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
|
|
|
|
+ </repository>
|
|
|
|
|
+ </distributionManagement>
|
|
|
|
|
+
|
|
|
|
|
+ <name>Urule Springboot Project</name>
|
|
|
|
|
+ <url>https://github.com/youseries/urule/tree/master/urule-springboot</url>
|
|
|
|
|
+ <issueManagement>
|
|
|
|
|
+ <url>https://github.com/youseries/urule/issues</url>
|
|
|
|
|
+ </issueManagement>
|
|
|
|
|
+ <description>Urule Springboot Project</description>
|
|
|
|
|
+</project>
|