osci-bibliothek-sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.osci</groupId> <artifactId>osci-bibliothek-sample</artifactId> <version>2.4.4</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>de.osci</groupId> <artifactId>osci-bibliothek-lib</artifactId> <version>2.4.4</version> </parent> <artifactId>osci-bibliothek-sample</artifactId> <dependencies> <dependency> <groupId>de.osci</groupId> <artifactId>osci-bibliothek</artifactId> <type>jar</type> </dependency> <dependency> <groupId>de.osci</groupId> <artifactId>osci-bibliothek</artifactId> <type>test-jar</type> <scope>runtime</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>${servlet.api.artifact.name}</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> <configuration> <!-- Beispielklasse für die Ausführung mit Maven --> <!-- Im Hauptprojektordner ausführen: > mvn clean install > mvn compile exec:java -pl :osci-bibliothek-sample --> <mainClass>de.osci.osci12.samples.OneWayMessage_ActiveRecipient</mainClass> <arguments> <argument>http://gov.test.osci.de/osci-manager-entry/externalentry</argument> </arguments> </configuration> </plugin> </plugins> </build> </project>