<?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> <artifactId>risenet-y9boot-webapp-interface-platform-manager</artifactId> <packaging>war</packaging> <parent> <groupId>net.risesoft</groupId> <artifactId>y9-digitalbase</artifactId> <version>v9.6.8-SNAPSHOT</version> <relativePath/> </parent> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <maven.deploy.skip>true</maven.deploy.skip> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!--新版单点登录Jar包引入--> <dependency> <groupId>net.risesoft</groupId> <artifactId>risenet-y9boot-starter-sso-oauth2-resource</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.risesoft</groupId> <artifactId>risenet-y9boot-api-feignclient-platform</artifactId> <version>v9.6.4-SNAPSHOT</version> </dependency> <dependency> <groupId>net.risesoft</groupId> <artifactId>risenet-y9boot-starter-security</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.risesoft</groupId> <artifactId>risenet-y9boot-starter-log</artifactId> <version>${project.version}</version> </dependency> <!--单点登录包引入结束--> <dependency> <groupId>net.risesoft</groupId> <artifactId>risenet-y9boot-starter-jpa-public</artifactId> <version>${project.version}</version> </dependency> <!-- 父级未引入Jar包 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> </dependency> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> </dependency> <!--引入结束--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-core</artifactId> <version>5.3.5</version> </dependency> <dependency> <groupId>com.belerweb</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.0</version> </dependency> <dependency> <groupId>ws.schild</groupId> <artifactId>jave-all-deps</artifactId> <version>2.6.0</version> </dependency> <!--redisson --> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>3.16.2</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> <version>3.4.5</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> <version>3.4.5</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-rs-client</artifactId> <version>3.4.5</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-rs-extension-providers</artifactId> <version>3.4.5</version> </dependency> <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>net.risesoft</groupId> <artifactId>risenet-y9boot-starter-idGenerator</artifactId> <version>v9.6.3-SNAPSHOT</version> </dependency> <!--引入tool.jar的替换包--> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>javax.xml</groupId> <artifactId>jaxb-impl</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-xjc</artifactId> <version>2.2.1.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.13.0</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> </dependency> <!-- 通用产品版本简易审批--> <dependency> <groupId>net.risesoft</groupId> <artifactId>risenet-y9boot-support-interface-approve</artifactId> <version>${project.version}</version> </dependency> </dependencies> <distributionManagement> <repository> <id>releases</id> <url>https://svn.youshengyun.com:9900/nexus/repository/maven-releases/</url> </repository> <snapshotRepository> <id>snapshots</id> <url>https://svn.youshengyun.com:9900/nexus/repository/maven-snapshots/</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>y9-repo</id> <name>local private nexus</name> <url>https://svn.youshengyun.com:9900/nexus/repository/maven-public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>y9-repo-plugin</id> <name>local private plugin nexus</name> <url>https://svn.youshengyun.com:9900/nexus/repository/maven-public/</url> </pluginRepository> </pluginRepositories> <build> <finalName>interfaceManager</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>