org.wso2.carbon.apimgt.samples.sample4
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.am</groupId> <artifactId>org.wso2.carbon.apimgt.samples.sample4</artifactId> <version>3.1.0-beta</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"> <parent> <groupId>org.wso2.am</groupId> <artifactId>org.wso2.carbon.apimgt.samples</artifactId> <version>3.1.0-beta</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>org.wso2.carbon.apimgt.samples.sample4</artifactId> <name>Sample Four</name> <dependencies> <dependency> <groupId>org.wso2.am</groupId> <artifactId>org.wso2.carbon.apimgt.samples.utils</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>CreateSampleFourRawData</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>