-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set maven info: project info, licenses, encoding
- Loading branch information
1 parent
a9a82d7
commit ba430ca
Showing
1 changed file
with
112 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,112 @@ | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.github.albfernandez</groupId> | ||
<artifactId>juniversalchardet</artifactId> | ||
<version>1.0.3</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
</dependency> | ||
</dependencies> | ||
</project> | ||
<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.github.albfernandez</groupId> | ||
<artifactId>juniversalchardet</artifactId> | ||
<version>1.0.3</version> | ||
<url>https://github.com/albfernandez/juniversalchardet</url> | ||
<packaging>jar</packaging> | ||
<name>juniversalchardet</name> | ||
<description>Juniversalchardet is a Java port of "universalchardet",that is the encoding detector library of Mozilla..</description> | ||
<licenses> | ||
<license> | ||
<name>Mozilla Public License Version 1.1</name> | ||
<url>https://www.mozilla.org/en-US/MPL/1.1/</url> | ||
</license> | ||
<license> | ||
<name>GENERAL PUBLIC LICENSE, version 3 (GPL-3.0)</name> | ||
<url>http://www.gnu.org/licenses/gpl.txt</url> | ||
</license> | ||
<license> | ||
<name>GNU LESSER GENERAL PUBLIC LICENSE, version 3 (LGPL-3.0)</name> | ||
<url>http://www.gnu.org/licenses/lgpl.txt</url> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<name>Alberto Fernández</name> | ||
<email>[email protected]</email> | ||
<organization>Alberto Fernández</organization> | ||
<organizationUrl>https://github.com/albfernandez/</organizationUrl> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:[email protected]:albfernandez/juniversalchardet.git</connection> | ||
<developerConnection>scm:git:[email protected]:albfernandez/juniversalchardet.git</developerConnection> | ||
<url>[email protected]:albfernandez/juniversalchardet.git</url> | ||
</scm> | ||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/albfernandez/juniversalchardet/issues</url> | ||
</issueManagement> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
</properties> | ||
|
||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.3</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.6</version> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | ||
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.3</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |