mirror of
https://github.com/nicolabs/nicommons-java.git
synced 2026-02-22 18:05:21 +01:00
+ source encoding is UTF-8
This commit is contained in:
parent
a000f9cadf
commit
1cd07ebda4
84
pom.xml
84
pom.xml
|
|
@ -1,41 +1,45 @@
|
|||
<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>nicolabs</groupId>
|
||||
<artifactId>nicommons-java</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<name>nicommons-java</name>
|
||||
<description>Reusable patterns for Java</description>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>nicobo</name>
|
||||
<organization>nicolabs</organization>
|
||||
<organizationUrl>http://nicolabs.net</organizationUrl>
|
||||
<url>http://nicolabs.net/people/nicobo</url>
|
||||
<timezone>Europe/Paris</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.1</version>
|
||||
<configuration>
|
||||
<source>1.6</source>
|
||||
<target>1.6</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>1.7.10</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-httpclient</groupId>
|
||||
<artifactId>commons-httpclient</artifactId>
|
||||
<version>3.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<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>nicolabs</groupId>
|
||||
<artifactId>nicommons-java</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<name>nicommons-java</name>
|
||||
<description>Reusable patterns for Java</description>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>nicobo</name>
|
||||
<organization>nicolabs</organization>
|
||||
<organizationUrl>http://nicolabs.net</organizationUrl>
|
||||
<url>http://nicolabs.net/people/nicobo</url>
|
||||
<timezone>Europe/Paris</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.1</version>
|
||||
<configuration>
|
||||
<source>1.6</source>
|
||||
<target>1.6</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>1.7.10</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-httpclient</groupId>
|
||||
<artifactId>commons-httpclient</artifactId>
|
||||
<version>3.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
Loading…
Reference in a new issue