Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pom.xml 2.1 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>LibrarySystem</groupId>
  5. <artifactId>libsys</artifactId>
  6. <packaging>jar</packaging>
  7. <version>1.0</version>
  8. <name>LibrarySystem</name>
  9. <url>http://maven.apache.org</url>
  10. <dependencies>
  11. <dependency>
  12. <groupId>junit</groupId>
  13. <artifactId>junit</artifactId>
  14. <version>3.8.1</version>
  15. <scope>test</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.json</groupId>
  19. <artifactId>org.json</artifactId>
  20. <version>chargebee-1.0</version>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.codehaus.mojo</groupId>
  27. <artifactId>exec-maven-plugin</artifactId>
  28. <version>1.2.1</version>
  29. <configuration>
  30. <mainClass>libsys.Main</mainClass>
  31. </configuration>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <version>3.5</version>
  37. <configuration>
  38. <source>1.6</source>
  39. <target>1.6</target>
  40. </configuration>
  41. </plugin>
  42. <plugin>
  43. <groupId>org.codehaus.mojo</groupId>
  44. <artifactId>cobertura-maven-plugin</artifactId>
  45. <version>2.7</version>
  46. <configuration>
  47. <formats>
  48. <format>html</format>
  49. <format>xml</format>
  50. </formats>
  51. <check />
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-assembly-plugin</artifactId>
  56. <configuration>
  57. <archive>
  58. <manifest>
  59. <mainClass>libsys.Main</mainClass>
  60. </manifest>
  61. </archive>
  62. <descriptorRefs>
  63. <descriptorRef>jar-with-dependencies</descriptorRef>
  64. </descriptorRefs>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>