tpuk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sinosoftgz</groupId>
<artifactId>tpuk</artifactId>
<version>1.0.9.RELEASE</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.22.RELEASE</version>
</parent>
<groupId>com.sinosoftgz</groupId>
<artifactId>tpuk</artifactId>
<version>1.0.9.RELEASE</version>
<packaging>pom</packaging>
<properties>
<env>test</env>
</properties>
<profiles>
<profile>
<id>winjdk</id>
<properties>
<bootclasspath>${JAVA_HOME}/jre/lib/rt.jar;${JAVA_HOME}/jre/lib/jce.jar</bootclasspath>
</properties>
<activation>
<os>
<family>windows</family>
</os>
</activation>
</profile>
<profile>
<id>linuxjdk</id>
<properties>
<bootclasspath>${JAVA_HOME}/jre/lib/rt.jar:${JAVA_HOME}/jre/lib/jce.jar</bootclasspath>
</properties>
<activation>
<os>
<family>unix</family>
</os>
</activation>
</profile>
<profile>
<id>windows</id>
<repositories>
<!--腾讯云-->
<repository>
<id>nexus-tencentyun</id>
<name>Nexus tencentyun</name>
<url>http://mirrors.cloud.tencent.com/nexus/repository/maven-public/</url>
</repository>
<!--公司-->
<repository>
<id>public</id>
<url>http://39.98.88.185:5531/nexus/content/groups/public/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>nexus-tencentyun</id>
<name>Nexus tencentyun</name>
<url>http://mirrors.cloud.tencent.com/nexus/repository/maven-public/</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>sinosoftgz-releases</id>
<url>http://39.98.88.185:5531/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>sinosoftgz-Snapshots</id>
<url>http://39.98.88.185:5531/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<activation>
<os>
<family>windows</family>
</os>
</activation>
</profile>
<profile>
<!--当前内网时启动-->
<id>INTRANET</id>
<properties>
<INTRANET_REPOSITORY>http://10.94.211.66/repository/maven-public/</INTRANET_REPOSITORY>
<INTRANET_REPOSITORY_RELEASES>http://10.94.211.66/repository/maven-releases/</INTRANET_REPOSITORY_RELEASES>
<INTRANET_REPOSITORY_SNAPSHOTS>http://10.94.211.66/repository/maven-snapshots/</INTRANET_REPOSITORY_SNAPSHOTS>
</properties>
<repositories>
<repository>
<id>INTRANET</id>
<url>${INTRANET_REPOSITORY}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<updatePolicy>always</updatePolicy>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>taiping-releases</id>
<url>${INTRANET_REPOSITORY_RELEASES}</url>
</repository>
<snapshotRepository>
<id>intranet-Snapshots</id>
<url>${INTRANET_REPOSITORY_SNAPSHOTS}</url>
</snapshotRepository>
</distributionManagement>
</profile>
<profile>
<!--当前内网时启动-->
<id>taiping</id>
<properties>
<TEST_INTRANET_REPOSITORY>http://10.94.211.66/repository/maven-public/</TEST_INTRANET_REPOSITORY>
<TEST_INTRANET_REPOSITORY_RELEASES>file:///tpsys/maven/local/repository/maven-releases/</TEST_INTRANET_REPOSITORY_RELEASES>
<TEST_INTRANET_REPOSITORY_SNAPSHOTS>file:///tpsys/maven/local/repository/maven-snapshots/</TEST_INTRANET_REPOSITORY_SNAPSHOTS>
</properties>
<repositories>
<repository>
<id>TEST_INTRANET_REPOSITORY_RELEASES</id>
<url>${TEST_INTRANET_REPOSITORY_RELEASES}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<updatePolicy>always</updatePolicy>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>TEST_INTRANET_REPOSITORY_SNAPSHOTS</id>
<url>${TEST_INTRANET_REPOSITORY_SNAPSHOTS}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<updatePolicy>always</updatePolicy>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>INTRANET</id>
<url>${TEST_INTRANET_REPOSITORY}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<updatePolicy>always</updatePolicy>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>taiping-releases</id>
<url>${TEST_INTRANET_REPOSITORY_RELEASES}</url>
</repository>
<snapshotRepository>
<id>intranet-Snapshots</id>
<url>${TEST_INTRANET_REPOSITORY_SNAPSHOTS}</url>
</snapshotRepository>
</distributionManagement>
</profile>
<profile>
<id>sonatype-deploy</id>
<properties>
<!-- <gpg.executable>gpg</gpg.executable>-->
<!-- <gpg.keyname>xiaoqian</gpg.keyname>-->
<gpg.passphrase>sakurawinds</gpg.passphrase>
</properties>
<build>
<plugins>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-release</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<build>
<!--增加 bootstrap 文件 预加载-->
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/application*.yml</include>
<include>**/application*.yaml</include>
<include>**/application*.properties</include>
<include>**/bootstrap*.yml</include>
<include>**/bootstrap*.yaml</include>
<include>**/bootstrap*.properties</include>
</includes>
</resource>
<resource>
<directory>${basedir}/src/main/resources</directory>
<excludes>
<exclude>**/application*.yml</exclude>
<exclude>**/application*.yaml</exclude>
<exclude>**/application*.properties</exclude>
<exclude>**/bootstrap*.yml</exclude>
<exclude>**/bootstrap*.yaml</exclude>
<exclude>**/bootstrap*.properties</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.7.0.1746</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<!-- <exclude>org.flywaydb:*</exclude>-->
</excludes>
</bannedDependencies>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<!-- <compilerArgument>-parameters</compilerArgument>-->
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
</plugins>
</pluginManagement>
</build>
</project>