Remote Control zum Einschalten des 3D-Druckers und Bewegen der ebCam im Hobbyraum Brand
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pom.xml 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <artifactId>maven-assembly-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <phase>package</phase>
  51. <goals>
  52. <goal>single</goal>
  53. </goals>
  54. <configuration>
  55. <appendAssemblyId>false</appendAssemblyId>
  56. <descriptors>
  57. <descriptor>src/main/assembly/zip.xml</descriptor>
  58. </descriptors>
  59. </configuration>
  60. </execution>
  61. </executions>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>