aricl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.aripd</groupId>
<artifactId>aricl</artifactId>
<version>1.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>
<groupId>com.aripd</groupId>
<artifactId>aricl</artifactId>
<version>1.4</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>JSF Component Library</description>
<url>http://www.aripd.com</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
<license>
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<organization>
<name>ARI Business Management Systems</name>
<url>http://aripd.com</url>
</organization>
<developers>
<developer>
<id>aricem</id>
<name>aricem</name>
<email>cem@aripd.com</email>
<organization>aripd</organization>
<organizationUrl>http://aripd.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>Europe/Istanbul</timezone>
<properties>
<picUrl>http://www.gravatar.com/avatar/3b4ba85b0dcf09413781a93334722052.jpg</picUrl>
</properties>
</developer>
<developer>
<id>aripddev</id>
<name>aripddev</name>
<email>dev@aripd.com</email>
<organization>aripd</organization>
<organizationUrl>http://aripd.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>Europe/Istanbul</timezone>
<properties>
<picUrl>http://www.gravatar.com/avatar/f3d323a489fe2b30515bf2eb599aaad7.jpg</picUrl>
</properties>
</developer>
</developers>
<contributors>
<contributor>
<name>aripddev</name>
<email>dev@aripd.com</email>
<url>http://aripd.com</url>
<organization>aripd</organization>
<organizationUrl>http://aripd.com</organizationUrl>
<roles>
<role>tester</role>
</roles>
<timezone>Europe/Istanbul</timezone>
<properties>
<gtalk>dev@aripd.com</gtalk>
</properties>
</contributor>
</contributors>
<scm>
<connection>scm:git:git@github.com:aripd/aricl.git</connection>
<developerConnection>scm:git:git@github.com:aripd/aricl.git</developerConnection>
<url>https://github.com/aripd/aricl</url>
</scm>
<issueManagement>
<url>https://github.com/aripd/aricl/issues</url>
<system>GitHub</system>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<destDir>javadoc</destDir>
<excludes>
<exclude>**/Test*.java</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.faces</artifactId>
<version>2.2.14</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>6.0</version>
<type>jar</type>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
</project>