calimero-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-server</artifactId> <version>2.5-rc2</version> </dependency>
<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> <parent> <groupId>com.github.calimero</groupId> <artifactId>calimero-parent</artifactId> <version>2.5-rc2</version> </parent> <artifactId>calimero-server</artifactId> <name>Calimero KNXnet/IP Server</name> <description>Calimero KNXnet/IP server, a free KNX network server</description> <scm> <url>https://github.com/calimero-project/calimero-server.git</url> </scm> <url>https://github.com/calimero-project/calimero-server</url> <developers> <developer> <name>Boris Malinowsky</name> <email>b.malinowsky@gmail.com</email> </developer> </developers> <properties> <exec.mainClass>tuwien.auto.calimero.server.Launcher</exec.mainClass> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>${exec.mainClass}</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.5.0</version> <configuration> <cleanupDaemonThreads>false</cleanupDaemonThreads> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-device</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-rxtx</artifactId> <version>${project.version}</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>runtime</scope> <optional>true</optional> </dependency> </dependencies> <repositories> <repository> <id>snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> </snapshots> </repository> </repositories> </project>