Mon, 30 Dec 2024 13:15:48 +0100
add exec maven plugin
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>de.unixwork</groupId> <artifactId>IM5</artifactId> <version>1.0-SNAPSHOT</version> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.igniterealtime.smack</groupId> <artifactId>smack-java11-full</artifactId> <version>4.5.0-beta5</version> </dependency> <dependency> <groupId>org.jitsi</groupId> <artifactId>org.otr4j</artifactId> <version>0.23</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> <configuration> <mainClass>de.unixwork.im.Main</mainClass> </configuration> </plugin> </plugins> </build> </project>