Skip to content

Instantly share code, notes, and snippets.

@josgraha
Forked from codahale/pom.xml
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save josgraha/517e9c34617c53d14819 to your computer and use it in GitHub Desktop.

Select an option

Save josgraha/517e9c34617c53d14819 to your computer and use it in GitHub Desktop.

Revisions

  1. @codahale codahale revised this gist May 13, 2013. 1 changed file with 4 additions and 4 deletions.
    8 changes: 4 additions & 4 deletions pom.xml
    Original file line number Diff line number Diff line change
    @@ -21,11 +21,11 @@
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.3.2</version>
    <!-- compile for Java 1.6 -->
    <version>3.1</version>
    <!-- compile for Java 1.7 -->
    <configuration>
    <source>1.6</source>
    <target>1.6</target>
    <source>1.7</source>
    <target>1.7</target>
    <encoding>UTF-8</encoding>
    </configuration>
    </plugin>
  2. @codahale codahale revised this gist Mar 12, 2012. No changes.
  3. @codahale codahale revised this gist Mar 12, 2012. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion pom.xml
    Original file line number Diff line number Diff line change
    @@ -11,6 +11,7 @@
    </dependencies>

    <properties>
    <!-- use UTF-8 for everything -->
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>
    @@ -30,4 +31,4 @@
    </plugin>
    </plugins>
    </build>
    </project>
    </project>
  4. @codahale codahale revised this gist Mar 12, 2012. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion pom.xml
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,3 @@

    <?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>
  5. @codahale codahale created this gist Mar 12, 2012.
    34 changes: 34 additions & 0 deletions pom.xml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,34 @@

    <?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.example</groupId>
    <artifactId>my-project</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <dependencies>
    <!-- none yet -->
    </dependencies>

    <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.3.2</version>
    <!-- compile for Java 1.6 -->
    <configuration>
    <source>1.6</source>
    <target>1.6</target>
    <encoding>UTF-8</encoding>
    </configuration>
    </plugin>
    </plugins>
    </build>
    </project>