intellij version of CashMachineBlueJ

pom.xml 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.almasb</groupId>
  6. <artifactId>CashMachine</artifactId>
  7. <version>0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <source.version>1.8</source.version>
  12. <!-- plugins -->
  13. <maven.compiler.version>3.3</maven.compiler.version>
  14. <maven.shade.version>2.4.2</maven.shade.version>
  15. <!-- dependencies -->
  16. </properties>
  17. <dependencies>
  18. <!-- https://mvnrepository.com/artifact/com.jfoenix/jfoenix -->
  19. <dependency>
  20. <groupId>com.jfoenix</groupId>
  21. <artifactId>jfoenix</artifactId>
  22. <version>8.0.7</version>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <configuration>
  31. <source>8</source>
  32. <target>8</target>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>