pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.mycompany</groupId>
  5. <artifactId>iotmddfacs</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <build>
  9. <sourceDirectory>src</sourceDirectory>
  10. <finalName>iotmddfacs</finalName>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.codehaus.mojo</groupId>
  14. <artifactId>exec-maven-plugin</artifactId>
  15. <executions>
  16. <execution>
  17. <goals>
  18. <goal>java</goal>
  19. </goals>
  20. </execution>
  21. </executions>
  22. <version>1.2.1</version>
  23. <configuration>
  24. <mainClass>View.MainPage</mainClass>
  25. </configuration>
  26. </plugin>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <version>3.5.1</version>
  31. <configuration>
  32. <source>15</source>
  33. <target>15</target>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <dependencies>
  39. <!-- https://mvnrepository.com/artifact/org.json/json -->
  40. <dependency>
  41. <groupId>org.json</groupId>
  42. <artifactId>json</artifactId>
  43. <version>20230227</version>
  44. </dependency>
  45. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
  46. <dependency>
  47. <groupId>com.fasterxml.jackson.core</groupId>
  48. <artifactId>jackson-annotations</artifactId>
  49. <version>2.15.2</version>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.core</groupId>
  54. <artifactId>jackson-databind</artifactId>
  55. <version>2.15.2</version>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  58. <dependency>
  59. <groupId>com.fasterxml.jackson.core</groupId>
  60. <artifactId>jackson-core</artifactId>
  61. <version>2.14.0</version>
  62. </dependency>
  63. </dependencies>
  64. <properties>
  65. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  66. <maven.compiler.source>11</maven.compiler.source>
  67. <maven.compiler.target>11</maven.compiler.target>
  68. </properties>
  69. </project>