runit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sta-soft</groupId> <artifactId>runit</artifactId> <version>1.1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.sta-soft</groupId> <artifactId>masterpom</artifactId> <version>1.11</version> </parent> <artifactId>runit</artifactId> <version>1.1</version> <packaging>war</packaging> <name>RUnit</name> <description>Remote JUnit.</description> <url>http://www.sta-soft.com</url> <organization> <name>>StA-Soft<</name> <url>http://www.sta-soft.com</url> </organization> <inceptionYear>2021, 2023</inceptionYear> <developers> <developer> <name>Steffen Albrecht</name> <email>steffen.albrecht.ef@sta-soft.com</email> <organization>>StA-Soft<</organization> <organizationUrl>http://www.sta-soft.com</organizationUrl> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:svn:http://ubuntu2/svn/myrepo/RUnit/trunk</connection> <developerConnection>scm:svn:http://ubuntu2/svn/myrepo/RUnit/trunk</developerConnection> <url>http://ubuntu2/svn/myrepo/RUnit/trunk/</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <!-- The files under test are no test for this project, but they are examples on how to build some tests which can be run by runit. There are some examples for a failing test and this would make this build fail. --> <configuration> <excludes> <exclude>**/example/*.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <!-- MLogger --> <dependency> <groupId>com.sta-soft</groupId> <artifactId>mlogger</artifactId> <version>1.41</version> </dependency> <!-- Reflections --> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.12</version> </dependency> <!-- --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.1.0-RC.1</version> <!-- 1.10.19 does not match with junit 4.12 --> <scope>test</scope> </dependency> </dependencies> </project>