Remote Control zum Einschalten des 3D-Druckers und Bewegen der ebCam im Hobbyraum Brand
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. <groupId>ch.spherICIT</groupId>
  7. <artifactId>FSRemoteControl</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>21</maven.compiler.source>
  11. <maven.compiler.target>21</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <flatlafVersion>3.5.4</flatlafVersion>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.formdev</groupId>
  18. <artifactId>flatlaf</artifactId>
  19. <version>${flatlafVersion}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.formdev</groupId>
  23. <artifactId>flatlaf</artifactId>
  24. <version>${flatlafVersion}</version>
  25. <classifier>windows-x86_64</classifier>
  26. <type>dll</type>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.swinglabs</groupId>
  30. <artifactId>swingx</artifactId>
  31. <version>1.6.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>net.sf.flexjson</groupId>
  35. <artifactId>flexjson</artifactId>
  36. <version>3.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fazecast</groupId>
  40. <artifactId>jSerialComm</artifactId>
  41. <version>2.11.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.google.code.gson</groupId>
  45. <artifactId>gson</artifactId>
  46. <version>2.11.0</version>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <artifactId>maven-assembly-plugin</artifactId>
  53. <executions>
  54. <execution>
  55. <phase>package</phase>
  56. <goals>
  57. <goal>single</goal>
  58. </goals>
  59. <configuration>
  60. <appendAssemblyId>false</appendAssemblyId>
  61. <descriptors>
  62. <descriptor>src/main/assembly/zip.xml</descriptor>
  63. </descriptors>
  64. </configuration>
  65. </execution>
  66. </executions>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>