kernel-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.sf3jswing</groupId> <artifactId>kernel-core</artifactId> <version>1.3.22</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>net.sf.sf3jswing</groupId> <artifactId>kernel</artifactId> <version>1.3.22</version> </parent> <artifactId>kernel-core</artifactId> <packaging>jar</packaging> <profiles> <!--macOs builders selection--> <profile> <id>macos</id> <activation> <os> <family>Mac</family> </os> </activation> <properties> <platformModule>osx</platformModule> <platformClass>Mac</platformClass> <platformClass.arch>ppc</platformClass.arch> </properties> </profile> <!--RedHat and Linux builders selection--> <profile> <id>redhat</id> <activation> <os> <family>Linux</family> </os> </activation> <properties> <platformModule>lnx</platformModule> <platformClass>Linux</platformClass> <platformClass.arch>amd64</platformClass.arch> </properties> </profile> <!--Windows builders selection--> <profile> <id>windows</id> <activation> <os> <family>Windows</family> </os> </activation> <properties> <platformModule>win</platformModule> <platformClass>Windows</platformClass> <!--<platformClass.arch>i586</platformClass.arch>--> <platformClass.arch>x86</platformClass.arch> </properties> </profile> </profiles> <dependencies> <!--build platform dependency resolver--> <dependency> <groupId>${project.parent.groupId}</groupId> <artifactId>${project.parent.artifactId}-${platformModule}</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <version>4.6</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.10</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore-nio</artifactId> <version>4.0.1</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.0.1</version> </dependency> <!-- https://mvnrepository.com/artifact/ant-contrib/ant-contrib --> <dependency> <groupId>ant-contrib</groupId> <artifactId>ant-contrib</artifactId> <version>1.0b3</version> </dependency> </dependencies> <build> <plugins> <!-- Sonatype Nexus Staging deployment --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0.0</version> </plugin> <!--Extract AntBuildFiles's resources--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> </plugin> <!--Decipher AntBuildFiles's resources--> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.5.0</version> </plugin> <!--run ant tasks - build-jar--> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> </plugin> <!-- tell children pom.xml to read api-descriptor for assembly plugin --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.10</version> </plugin> </plugins> </build> <name>SF3JSWING: Kernel CORE</name> <!-- sonatype required information --> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Tiana Rakoto</name> <email>b23prodtm@gmail.com</email> <organization>b23production GNU/GPL</organization> <organizationUrl>http://www.b23prodtm.info</organizationUrl> </developer> </developers> <scm> <connection>scm:git:ssh://git@github.com/b23prodtm/sf3-jxakn.git</connection> <developerConnection>scm:git:ssh://git@github.com/b23prodtm/sf3-jxakn.git</developerConnection> <url>https://github.com/b23prodtm/sf3-jxakn</url> <tag>kernel-1.3.22</tag> </scm> </project>