karalight
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.i8k</groupId> <artifactId>karalight</artifactId> <version>0.8.0</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.i8k</groupId> <artifactId>karalight</artifactId> <version>0.8.0</version> <packaging>jar</packaging> <name>Kara Light</name> <description>Kara Light is a IDE-agnostic Kara clone.</description> <url>https://gitlab.lrz.de/karalight/karalight</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Bastian Katz</name> <email>bastian.katz@hm.edu</email> <organization>Munich University of Applied Sciences</organization> <organizationUrl>http://www.hm.edu</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://gitlab.lrz.de/karalight/karalight.git</connection> <developerConnection>scm:git:https://gitlab.lrz.de/karalight/karalight.git</developerConnection> <url>https://gitlab.lrz.de/karalight/karalight</url> </scm> <properties> <source.encoding>UTF-8</source.encoding> <project.build.sourceEncoding>${source.encoding}</project.build.sourceEncoding> <commons-lang.version>3.9</commons-lang.version> <junit.version>5.9.0</junit.version> <logback-classic.version>1.2.11</logback-classic.version> <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>