calimero-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-core</artifactId> <version>2.3</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.3</version> </parent> <artifactId>calimero-core</artifactId> <name>Calimero-core Library</name> <description>Calimero, a free KNX network library</description> <scm> <url>https://github.com/calimero-project/calimero-core.git</url> </scm> <url>https://github.com/calimero-project/calimero-core</url> <licenses> <license> <name>GNU General Public License, version 2, with the Classpath Exception</name> <url>LICENSE.txt</url> </license> </licenses> <developers> <developer> <name>Boris Malinowsky</name> <email>b.malinowsky@gmail.com</email> </developer> </developers> <properties> <exec.mainClass>tuwien.auto.calimero.Settings</exec.mainClass> </properties> <prerequisites> <maven>3.3.9</maven> </prerequisites> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.4</source> <target>1.4</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>tuwien.auto.calimero.Settings</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <useFile>false</useFile> </configuration> </plugin> </plugins> </build> <dependencies> </dependencies> </project>