You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
156 lines
5.4 KiB
156 lines
5.4 KiB
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.6.7</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
|
|
<groupId>com.jiuyv</groupId>
|
|
<artifactId>agile-portal</artifactId>
|
|
<version>0.0.1</version>
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<bitwalker.version>1.21</bitwalker.version>
|
|
<kaptcha.version>2.3.2</kaptcha.version>
|
|
<mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version>
|
|
<pagehelper.boot.version>1.4.1</pagehelper.boot.version>
|
|
<oshi.version>6.1.6</oshi.version>
|
|
<commons.io.version>2.11.0</commons.io.version>
|
|
<commons.fileupload.version>1.4</commons.fileupload.version>
|
|
<commons.collections.version>3.2.2</commons.collections.version>
|
|
<poi.version>4.1.2</poi.version>
|
|
<velocity.version>2.3</velocity.version>
|
|
<jwt.version>0.9.1</jwt.version>
|
|
<ajcaptcha.version>1.3.0</ajcaptcha.version>
|
|
<openfeign.version>3.1.0</openfeign.version>
|
|
</properties>
|
|
|
|
<!-- <dependencyManagement>-->
|
|
<!-- <dependencies>-->
|
|
<!-- <!– SpringBoot的依赖配置 –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-dependencies</artifactId>-->
|
|
<!-- <version>2.6.7</version>-->
|
|
<!-- <type>pom</type>-->
|
|
<!-- <scope>import</scope>-->
|
|
<!-- </dependency>-->
|
|
<!-- </dependencies>-->
|
|
<!-- </dependencyManagement>-->
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>nexus-releases</id>
|
|
<name>Internal Releases</name>
|
|
<url>http://172.16.12.11:8082/repository/maven-releases/</url>
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
<id>nexus-snapshots</id>
|
|
<name>Internal Snapshots</name>
|
|
<url>http://172.16.12.11:8082/repository/maven-snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<scm>
|
|
<connection>scm:svn:http://172.16.12.10/sptcc_agile_etl/src/portal/src/trunk/agile-portal</connection>
|
|
<developerConnection>scm:svn:http://172.16.12.10/svn/sptcc_agile_etl/src/portal/src/trunk/agile-portal</developerConnection>
|
|
</scm>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jiuyv</id>
|
|
<name>jiuyv</name>
|
|
<url>http://172.16.12.11:8082/repository/maven-public/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>jboss</id>
|
|
<name>jboss</name>
|
|
<url>http://repository.jboss.org/maven2/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>geotools</id>
|
|
<name>geotools</name>
|
|
<url>http://maven.geotools.fr/repository/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>jahia</id>
|
|
<name>jahia</name>
|
|
<url>http://maven.jahia.org/maven2/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>vars</id>
|
|
<name>vars</name>
|
|
<url>http://vars.sourceforge.net/maven2/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>jiuyv</id>
|
|
<name>jiuyv Plugin Repository</name>
|
|
<url>http://172.16.12.11:8082/repository/maven-public/</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>central</id>
|
|
<name>Maven Plugin Repository</name>
|
|
<url>http://repo1.maven.org/maven2/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<modules>
|
|
<module>agile-portal-service</module>
|
|
<module>agile-portal-gateway</module>
|
|
<module>agile-portsl-api</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|