Skip to content
This repository was archived by the owner on Aug 17, 2019. It is now read-only.

Commit cff89de

Browse files
committed
Copy and adjust pom.xml from Maybe
1 parent ee93a37 commit cff89de

File tree

1 file changed

+204
-0
lines changed

1 file changed

+204
-0
lines changed

pom.xml

+204
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2012 Christos KK Loverdos
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
<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">
18+
19+
20+
<modelVersion>4.0.0</modelVersion>
21+
<parent>
22+
<groupId>org.sonatype.oss</groupId>
23+
<artifactId>oss-parent</artifactId>
24+
<version>7</version>
25+
</parent>
26+
27+
<groupId>com.ckkloverdos</groupId>
28+
<artifactId>converter</artifactId>
29+
<version>0.4.0-SNAPSHOT</version>
30+
<packaging>jar</packaging>
31+
32+
<name>Converter</name>
33+
<description>
34+
Use this library to convert value between different types.
35+
</description>
36+
<url>https://github.com/loverdos/converter</url>
37+
<inceptionYear>2011</inceptionYear>
38+
<organization>
39+
<name>ckkloverdos.com</name>
40+
<url>http://ckkloverdos.com</url>
41+
</organization>
42+
43+
<licenses>
44+
<license>
45+
<name>Apache 2</name>
46+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
47+
</license>
48+
</licenses>
49+
50+
<developers>
51+
<developer>
52+
<id>loverdos</id>
53+
<name>Christos KK Loverdos</name>
54+
<email>loverdos@gmail.com</email>
55+
</developer>
56+
</developers>
57+
58+
<scm>
59+
<url>https://loverdos@github.com/loverdos/converter</url>
60+
<connection>scm:git:https://loverdos@github.com/loverdos/converter.git</connection>
61+
<developerConnection>scm:git:git@github.com:loverdos/converter.git</developerConnection>
62+
</scm>
63+
64+
<issueManagement>
65+
<system>Github</system>
66+
<url>https://github.com/loverdos/converter/issues</url>
67+
</issueManagement>
68+
69+
<properties>
70+
<scala.version>2.9.1</scala.version>
71+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
72+
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
73+
</properties>
74+
75+
<dependencies>
76+
<dependency>
77+
<groupId>org.scala-lang</groupId>
78+
<artifactId>scala-library</artifactId>
79+
<version>${scala.version}</version>
80+
</dependency>
81+
<dependency>
82+
<groupId>com.ckkloverdos</groupId>
83+
<artifactId>maybe</artifactId>
84+
<version>0.4.0-SNAPSHOT</version>
85+
</dependency>
86+
<dependency>
87+
<groupId>org.slf4j</groupId>
88+
<artifactId>slf4j-api</artifactId>
89+
<version>1.6.4</version>
90+
</dependency>
91+
<dependency>
92+
<groupId>ch.qos.logback</groupId>
93+
<artifactId>logback-classic</artifactId>
94+
<version>0.9.29</version>
95+
</dependency>
96+
<dependency>
97+
<groupId>junit</groupId>
98+
<artifactId>junit</artifactId>
99+
<version>4.10</version>
100+
<scope>test</scope>
101+
</dependency>
102+
</dependencies>
103+
104+
<build>
105+
<sourceDirectory>src/main/scala</sourceDirectory>
106+
<testSourceDirectory>src/test/scala</testSourceDirectory>
107+
<resources>
108+
<resource>
109+
<directory>${basedir}/src/main/resources</directory>
110+
</resource>
111+
</resources>
112+
<testResources>
113+
<testResource>
114+
<directory>${basedir}/src/test/resources</directory>
115+
</testResource>
116+
</testResources>
117+
<plugins>
118+
<plugin>
119+
<artifactId>maven-enforcer-plugin</artifactId>
120+
<version>1.0.1</version>
121+
<executions>
122+
<execution>
123+
<id>enforce-tools</id>
124+
<goals>
125+
<goal>enforce</goal>
126+
</goals>
127+
<configuration>
128+
<rules>
129+
<requireJavaVersion>
130+
<version>[1.6.0,)</version>
131+
</requireJavaVersion>
132+
<requireMavenVersion>
133+
<version>[3.0.3,)</version>
134+
</requireMavenVersion>
135+
</rules>
136+
</configuration>
137+
</execution>
138+
</executions>
139+
</plugin>
140+
141+
<plugin>
142+
<groupId>org.scala-tools</groupId>
143+
<artifactId>maven-scala-plugin</artifactId>
144+
<version>2.15.2</version>
145+
<configuration>
146+
<scalaVersion>${scala.version}</scalaVersion>
147+
<charset>${project.build.sourceEncoding}</charset>
148+
<args>
149+
<arg>-deprecation</arg>
150+
<arg>-unchecked</arg>
151+
<arg>-optimize</arg>
152+
</args>
153+
<charset>${project.build.sourceEncoding}</charset>
154+
</configuration>
155+
<executions>
156+
<execution>
157+
<goals>
158+
<goal>compile</goal>
159+
<goal>testCompile</goal>
160+
</goals>
161+
</execution>
162+
</executions>
163+
</plugin>
164+
165+
<plugin>
166+
<groupId>org.apache.maven.plugins</groupId>
167+
<artifactId>maven-surefire-plugin</artifactId>
168+
<version>2.9</version>
169+
<configuration>
170+
<useFile>false</useFile>
171+
<reportFormat>plain</reportFormat>
172+
</configuration>
173+
</plugin>
174+
175+
<plugin>
176+
<groupId>org.apache.maven.plugins</groupId>
177+
<artifactId>maven-source-plugin</artifactId>
178+
<version>2.1.2</version>
179+
<executions>
180+
<execution>
181+
<id>attach-sources</id>
182+
<goals>
183+
<goal>jar-no-fork</goal>
184+
</goals>
185+
</execution>
186+
</executions>
187+
</plugin>
188+
189+
<plugin>
190+
<groupId>org.apache.maven.plugins</groupId>
191+
<artifactId>maven-release-plugin</artifactId>
192+
<version>2.2.2</version>
193+
<configuration>
194+
<preparationGoals>clean verify</preparationGoals>
195+
</configuration>
196+
</plugin>
197+
198+
<plugin>
199+
<artifactId>maven-repository-plugin</artifactId>
200+
<version>2.3.1</version>
201+
</plugin>
202+
</plugins>
203+
</build>
204+
</project>

0 commit comments

Comments
 (0)