Skip to content

Instantly share code, notes, and snippets.

@koduki
Created June 19, 2016 00:26
Show Gist options
  • Save koduki/6dbfb01e4a19cedc992629d089822ac0 to your computer and use it in GitHub Desktop.
Save koduki/6dbfb01e4a19cedc992629d089822ac0 to your computer and use it in GitHub Desktop.
<?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>cn.orz.pascal.sandbox</groupId>
<artifactId>sandbox2</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>github</id>
<url>https://koduki.github.io/mvn-repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tiny-collection-extentions</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment