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.
|
|
<?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"> <parent> <artifactId>yxk_StoreroomSystem</artifactId> <groupId>com.storeroom</groupId> <version>1.0</version> </parent> <modelVersion>4.0.0</modelVersion>
<artifactId>storeroom</artifactId> <name>库房管理</name>
<properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> </properties>
<dependencies> <dependency> <groupId>com.storeroom</groupId> <artifactId>common</artifactId> <version>1.0</version> </dependency>
<dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.77.Final</version> </dependency>
<dependency> <groupId>com.ejlchina</groupId> <artifactId>okhttps-fastjson</artifactId> <version>3.5.2</version> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.8.3</version> </dependency>
<dependency> <groupId>com.storeroom</groupId> <artifactId>logging</artifactId> <version>1.0</version> </dependency>
<!-- <dependency>--> <!-- <groupId>com.netsdk</groupId>--> <!-- <artifactId>netsdk</artifactId>--> <!-- <version>1.0</version>--> <!-- <scope>system</scope>--> <!-- <systemPath>${pom.basedir}/src/main/resources/lib/netsdk.jar</systemPath>--> <!-- </dependency>-->
<dependency> <groupId>com.AbsoluteLayout</groupId> <artifactId>AbsoluteLayout</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${pom.basedir}/src/main/resources/lib/AbsoluteLayout.jar</systemPath> </dependency> <dependency> <groupId>com.jna</groupId> <artifactId>jna</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${pom.basedir}/src/main/resources/lib/jna.jar</systemPath> </dependency> <!-- <dependency>--> <!-- <groupId>com.jnaerator-runtime</groupId>--> <!-- <artifactId>jnaerator-runtime</artifactId>--> <!-- <version>1.0</version>--> <!-- <scope>system</scope>--> <!-- <systemPath>${pom.basedir}/src/main/resources/lib/jnaerator-runtime.jar</systemPath>--> <!-- </dependency>--> <dependency> <groupId>com.rt</groupId> <artifactId>rt</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${pom.basedir}/src/main/resources/lib/rt.jar</systemPath> </dependency> <dependency> <groupId>com.swing-layout-1.0.3</groupId> <artifactId>swing-layout-1.0.3</artifactId> <version>1.0.3</version> <scope>system</scope> <systemPath>${pom.basedir}/src/main/resources/lib/swing-layout-1.0.3.jar</systemPath> </dependency> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>5.12.1</version> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.basedir}/lib</directory> <targetPath>BOOT-INF/lib/</targetPath> <includes> <include>**/*.jar</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <targetPath>BOOT-INF/classes/</targetPath> </resource> </resources> </build> </project>
|