Guest User

LightningStorage

a guest
Sep 10th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 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>de.leonhard</groupId>
  8. <artifactId>exampleproject</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>jar</packaging>
  11.  
  12. <name>TestProject</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. <defaultGoal>clean package</defaultGoal>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>3.7.0</version>
  26. <configuration>
  27. <source>1.8</source>
  28. <target>1.8</target>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-shade-plugin</artifactId>
  34. <version>3.1.0</version>
  35. <executions>
  36. <execution>
  37. <phase>package</phase>
  38. <goals>
  39. <goal>shade</goal>
  40. </goals>
  41. <configuration>
  42. <createDependencyReducedPom>false</createDependencyReducedPom>
  43. </configuration>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. <resources>
  49. <resource>
  50. <directory>src/main/resources</directory>
  51. <filtering>true</filtering>
  52. </resource>
  53. </resources>
  54. </build>
  55.  
  56. <repositories>
  57. <repository>
  58. <id>jitpack.io</id>
  59. <url>https://jitpack.io</url>
  60. </repository>
  61. </repositories>
  62.  
  63. <dependencies>
  64. <dependency>
  65. <groupId>com.github.KotlinFactory</groupId>
  66. <artifactId>LightningStorage</artifactId>
  67. <version>3.1.9</version>
  68. </dependency>
  69. </dependencies>
  70. </project>
Add Comment
Please, Sign In to add comment