Advertisement
Guest User

pom.xml

a guest
Sep 5th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.44 KB | Source Code | 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>org.example</groupId>
  8.     <artifactId>neo4j_procedure</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <dependencies>
  12.         <dependency>
  13.             <groupId>org.neo4j</groupId>
  14.             <artifactId>neo4j</artifactId>
  15.             <version>4.4.9</version>
  16.             <scope>provided</scope>
  17.         </dependency>
  18.         <dependency>
  19.             <groupId>org.neo4j</groupId>
  20.             <artifactId>procedure-compiler</artifactId>
  21.             <version>4.4.9</version>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>org.neo4j.test</groupId>
  25.             <artifactId>neo4j-harness</artifactId>
  26.             <version>4.4.9</version>
  27.             <scope>test</scope>
  28.         </dependency>
  29.         <dependency>
  30.             <groupId>org.neo4j.driver</groupId>
  31.             <artifactId>neo4j-java-driver</artifactId>
  32.             <version>4.4.9</version>
  33.             <scope>test</scope>
  34.         </dependency>
  35.         <dependency>
  36.             <groupId>org.junit.jupiter</groupId>
  37.             <artifactId>junit-jupiter</artifactId>
  38.             <version>5.9.0</version>
  39.             <scope>test</scope>
  40.         </dependency>
  41.     </dependencies>
  42.     <build>
  43.         <plugins>
  44.             <plugin>
  45.                 <groupId>org.apache.maven.plugins</groupId>
  46.                 <artifactId>maven-compiler-plugin</artifactId>
  47.                 <version>3.10.1</version>
  48.                 <configuration>
  49.                     <encoding>UTF-8</encoding>
  50.                     <source>11</source>
  51.                     <target>11</target>
  52.                 </configuration>
  53.             </plugin>
  54.             <plugin>
  55.                 <groupId>org.apache.maven.plugins</groupId>
  56.                 <artifactId>maven-shade-plugin</artifactId>
  57.                 <version>3.2.0</version>
  58.                 <executions>
  59.                     <execution>
  60.                         <phase>package</phase>
  61.                         <goals>
  62.                             <goal>shade</goal>
  63.                         </goals>
  64.                     </execution>
  65.                 </executions>
  66.             </plugin>
  67.         </plugins>
  68.     </build>
  69.  
  70. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement