samples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.wso2.carbon</groupId>
<artifactId>samples</artifactId>
<version>4.12.39</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>org.wso2</groupId>
<artifactId>wso2</artifactId>
<version>1.4</version>
</parent>
<groupId>org.wso2.carbon</groupId>
<artifactId>samples</artifactId>
<version>4.12.39</version>
<packaging>pom</packaging>
<name>WSO2 Carbon - Samples</name>
<description>Carbon kernel sample</description>
<url>http://wso2.org</url>
<modules>
<module>student-manager</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>17</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<!--This parameter disables doclint-->
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<tag>v4.12.39</tag>
</scm>
</project>