Advertisement
Guest User

Untitled

a guest
May 2nd, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 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. <parent>
  8. <artifactId>corporateidentity</artifactId>
  9. <groupId>nl.at_automation</groupId>
  10. <version>1.2.1</version>
  11. </parent>
  12.  
  13. <artifactId>corporateidentity-client</artifactId>
  14.  
  15. <dependencies>
  16. <dependency>
  17. <groupId>nl.at_automation</groupId>
  18. <artifactId>corporateidentity-common</artifactId>
  19. <version>1.2.1</version>
  20. </dependency>
  21.  
  22. <dependency>
  23. <groupId>com.inductiveautomation.ignitionsdk</groupId>
  24. <artifactId>ignition-common</artifactId>
  25. <version>${ignition-sdk-version}</version>
  26. <type>pom</type>
  27. <scope>provided</scope>
  28. </dependency>
  29.  
  30. <dependency>
  31. <groupId>com.inductiveautomation.ignitionsdk</groupId>
  32. <artifactId>client-api</artifactId>
  33. <version>${ignition-sdk-version}</version>
  34. <type>pom</type>
  35. <scope>provided</scope>
  36. </dependency>
  37.  
  38. <dependency>
  39. <groupId>com.inductiveautomation.ignitionsdk</groupId>
  40. <artifactId>designer-api</artifactId>
  41. <version>${ignition-sdk-version}</version>
  42. <type>pom</type>
  43. <scope>provided</scope>
  44. </dependency>
  45.  
  46. <dependency>
  47. <groupId>com.inductiveautomation.ignitionsdk</groupId>
  48. <artifactId>vision-designer-api</artifactId>
  49. <version>${ignition-sdk-version}</version>
  50. <type>pom</type>
  51. <scope>provided</scope>
  52. </dependency>
  53.  
  54. <dependency>
  55. <groupId>com.inductiveautomation.ignitionsdk</groupId>
  56. <artifactId>vision-client-api</artifactId>
  57. <version>${ignition-sdk-version}</version>
  58. <type>pom</type>
  59. <scope>provided</scope>
  60. </dependency>
  61.  
  62.  
  63. <!-- https://mvnrepository.com/artifact/jfree/jfreechart -->
  64. <dependency>
  65. <groupId>jfree</groupId>
  66. <artifactId>jfreechart</artifactId>
  67. <version>1.0.13</version>
  68. </dependency>
  69.  
  70. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-swing -->
  71. <dependency>
  72. <groupId>org.openjfx</groupId>
  73. <artifactId>javafx-swing</artifactId>
  74. <version>11</version>
  75. </dependency>
  76.  
  77. <dependency>
  78. <groupId>org.openjfx</groupId>
  79. <artifactId>javafx-base</artifactId>
  80. <version>11</version>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-web -->
  83. <dependency>
  84. <groupId>org.openjfx</groupId>
  85. <artifactId>javafx-web</artifactId>
  86. <version>11</version>
  87. </dependency>
  88.  
  89. <dependency>
  90. <groupId>org.openjfx</groupId>
  91. <artifactId>javafx-controls</artifactId>
  92. <version>11</version>
  93. </dependency>
  94.  
  95. </dependencies>
  96.  
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-compiler-plugin</artifactId>
  102. <version>3.2</version>
  103. <configuration>
  104. <source>11</source>
  105. <target>11</target>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110.  
  111. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement