Advertisement
Guest User

Untitled

a guest
Jun 28th, 2021
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.93 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>me.hasunemiku2015.buildingai</groupId>
  8.     <artifactId>RoboArchitect</artifactId>
  9.     <version>0.1</version>
  10.     <packaging>jar</packaging>
  11.  
  12.     <name>RoboArchitect</name>
  13.  
  14.     <properties>
  15.         <java.version>1.8</java.version>
  16.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17.     </properties>
  18.  
  19.     <build>
  20.         <plugins>
  21.             <plugin>
  22.                 <groupId>org.apache.maven.plugins</groupId>
  23.                 <artifactId>maven-compiler-plugin</artifactId>
  24.                 <version>3.8.1</version>
  25.                 <configuration>
  26.                     <source>${java.version}</source>
  27.                     <target>${java.version}</target>
  28.                 </configuration>
  29.             </plugin>
  30.             <plugin>
  31.                 <groupId>org.apache.maven.plugins</groupId>
  32.                 <artifactId>maven-shade-plugin</artifactId>
  33.                 <version>3.2.4</version>
  34.                 <executions>
  35.                     <execution>
  36.                         <phase>package</phase>
  37.                         <goals>
  38.                             <goal>shade</goal>
  39.                         </goals>
  40.                         <configuration>
  41.                             <createDependencyReducedPom>false</createDependencyReducedPom>
  42.                         </configuration>
  43.                     </execution>
  44.                 </executions>
  45.             </plugin>
  46.         </plugins>
  47.         <resources>
  48.             <resource>
  49.                 <directory>src/main/resources</directory>
  50.                 <filtering>true</filtering>
  51.             </resource>
  52.         </resources>
  53.     </build>
  54.  
  55.     <repositories>
  56.         <repository>
  57.             <id>spigotmc-repo</id>
  58.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  59.         </repository>
  60.         <repository>
  61.             <id>enginehub-maven</id>
  62.             <url>https://maven.enginehub.org/repo/</url>
  63.         </repository>
  64.         <repository>
  65.             <id>sonatype</id>
  66.             <url>https://oss.sonatype.org/content/groups/public/</url>
  67.         </repository>
  68.     </repositories>
  69.  
  70.     <dependencies>
  71.         <dependency>
  72.             <groupId>ai.djl</groupId>
  73.             <artifactId>api</artifactId>
  74.             <version>0.11.0</version>
  75.         </dependency>
  76.  
  77.         <dependency>
  78.             <groupId>ai.djl.pytorch</groupId>
  79.             <artifactId>pytorch-engine</artifactId>
  80.             <version>0.11.0</version>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>ai.djl.pytorch</groupId>
  84.             <artifactId>pytorch-native-auto</artifactId>
  85.             <version>1.8.1</version>
  86.             <scope>runtime</scope>
  87.         </dependency>
  88.  
  89.         <dependency>
  90.             <groupId>org.slf4j</groupId>
  91.             <artifactId>slf4j-simple</artifactId>
  92.             <version>1.7.26</version>
  93.             <scope>test</scope>
  94.         </dependency>
  95.  
  96.         <dependency>
  97.             <groupId>org.spigotmc</groupId>
  98.             <artifactId>spigot-api</artifactId>
  99.             <version>1.16.4-R0.1-SNAPSHOT</version>
  100.             <scope>provided</scope>
  101.         </dependency>
  102.         <dependency>
  103.             <groupId>com.sk89q.worldedit</groupId>
  104.             <artifactId>worldedit-core</artifactId>
  105.             <version>7.3.0-SNAPSHOT</version>
  106.             <scope>provided</scope>
  107.         </dependency>
  108.         <dependency>
  109.             <groupId>com.sk89q.worldedit</groupId>
  110.             <artifactId>worldedit-bukkit</artifactId>
  111.             <version>7.3.0-SNAPSHOT</version>
  112.             <scope>provided</scope>
  113.         </dependency>
  114.     </dependencies>
  115. </project>
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement