1 Star 0 Fork 22

wuwu123/DiscoveryDesktop

forked from Nepxion/DiscoveryDesktop 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 7.64 KB
一键复制 编辑 原始数据 按行查看 历史
Nepxion 提交于 2023-01-10 15:33 . Upgrade discovery version to 6.20.0
<?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">
<groupId>com.nepxion</groupId>
<artifactId>discovery-desktop</artifactId>
<name>Nepxion Discovery Desktop</name>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
<version>1.1.0</version>
<description>Nepxion DiscoveryDesktop is a desktop for Nepxion Discovery with service governance, blue green and gray release orchestration, modelling, flow inspection</description>
<url>http://www.nepxion.com</url>
<properties>
<discovery.version>6.20.0</discovery.version>
<commons.configuration.version>1.10</commons.configuration.version>
<swing.worker.version>1.2</swing.worker.version>
<swingx.version>1.0</swingx.version>
<jide.version>2.9.7</jide.version>
<l2fprod.version>7.3</l2fprod.version>
<jcalendar.version>1.3.4.200905090658</jcalendar.version>
<nepxion.swing.version>1.0.0</nepxion.swing.version>
<nepxion.util.version>1.0.0</nepxion.util.version>
<nepxion.cots.version>1.0.0</nepxion.cots.version>
<twaver.version>3.7</twaver.version>
<alloy.version>1.4.4</alloy.version>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.nepxion</groupId>
<artifactId>discovery</artifactId>
<version>${discovery.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.nepxion</groupId>
<artifactId>discovery-plugin-framework-starter-parser</artifactId>
</dependency>
<dependency>
<groupId>com.nepxion</groupId>
<artifactId>banner</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>${commons.configuration.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>jdesktop</groupId>
<artifactId>swing-worker</artifactId>
<version>${swing.worker.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/jdesktop-swing-worker-${swing.worker.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>jdesktop</groupId>
<artifactId>swingx</artifactId>
<version>${swingx.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/jdesktop-swingx-${swingx.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>jide</groupId>
<artifactId>oss</artifactId>
<version>${jide.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/jide-oss-${jide.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>l2fprod</groupId>
<artifactId>common-all</artifactId>
<version>${l2fprod.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/l2fprod-common-all-${l2fprod.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>jcalendar</groupId>
<artifactId>jcalendar</artifactId>
<version>${jcalendar.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/jcalendar-${jcalendar.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>com.nepxion</groupId>
<artifactId>swing</artifactId>
<version>${nepxion.swing.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/nepxion-swing-${nepxion.swing.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>com.nepxion</groupId>
<artifactId>util</artifactId>
<version>${nepxion.util.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/nepxion-util-${nepxion.util.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>com.nepxion</groupId>
<artifactId>cots</artifactId>
<version>${nepxion.cots.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/nepxion-cots-${nepxion.cots.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>twaver</groupId>
<artifactId>twaver</artifactId>
<version>${twaver.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/twaver-${twaver.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>twaver</groupId>
<artifactId>twaver-gis</artifactId>
<version>${twaver.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/twaver-gis-${twaver.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>twaver</groupId>
<artifactId>twaver-layouter</artifactId>
<version>${twaver.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/twaver-layouter-${twaver.version}.jar</systemPath>
</dependency>
<dependency>
<groupId>com.incors</groupId>
<artifactId>alloy-skin</artifactId>
<version>${alloy.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/alloy-skin-${alloy.version}.jar</systemPath>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
<encoding>${project.build.sourceEncoding}</encoding>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/dist.xml</descriptor>
</descriptors>
<encoding>${project.build.sourceEncoding}</encoding>
<testFailureIgnore>true</testFailureIgnore>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/txy123/DiscoveryDesktop.git
git@gitee.com:txy123/DiscoveryDesktop.git
txy123
DiscoveryDesktop
DiscoveryDesktop
master

搜索帮助