Skip to content
This repository was archived by the owner on Dec 31, 2018. It is now read-only.

Commit a5051ee

Browse files
committed
Move to sonatype oss
1 parent db07eaa commit a5051ee

File tree

1 file changed

+73
-84
lines changed

1 file changed

+73
-84
lines changed

Diff for: pom.xml

+73-84
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,82 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2007-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">
418

5-
<groupId>org.ckkloverdos</groupId>
6-
<artifactId>jbootstrap</artifactId>
7-
<packaging>jar</packaging>
8-
<version>2.0.0</version>
9-
<name>jBootstrap</name>
1019

11-
<developers>
12-
<developer>
13-
<name>Christos KK Loverdos</name>
14-
<id>loverdos</id>
15-
<email>loverdos@gmail.com</email>
16-
<timezone>+2</timezone>
17-
</developer>
18-
</developers>
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>
1926

20-
<licenses>
21-
<license>
22-
<name>The Apache Software License, Version 2.0</name>
23-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24-
<distribution>repo</distribution>
25-
</license>
26-
</licenses>
27+
<groupId>com.ckkloverdos</groupId>
28+
<artifactId>jbootstrap</artifactId>
29+
<version>3.0.0-SNAPSHOT</version>
30+
<packaging>jar</packaging>
2731

28-
<build>
29-
<defaultGoal>assembly:assembly</defaultGoal>
30-
<plugins>
31-
<plugin>
32-
<artifactId>maven-assembly-plugin</artifactId>
33-
<configuration>
34-
<descriptors>
35-
<descriptor>src/main/assembly/assembly-all.xml</descriptor>
36-
</descriptors>
37-
</configuration>
38-
</plugin>
32+
<name>JBootstrap</name>
33+
<description>
34+
Making our lives easier with application classpath.
35+
</description>
36+
<url>https://github.com/loverdos/jbootstrap</url>
37+
<inceptionYear>2007</inceptionYear>
38+
<organization>
39+
<name>ckkloverdos.com</name>
40+
<url>http://ckkloverdos.com</url>
41+
</organization>
3942

40-
<plugin>
41-
<artifactId>maven-clean-plugin</artifactId>
42-
<configuration>
43-
<verbose>true</verbose>
44-
</configuration>
45-
</plugin>
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>
4649

47-
<plugin>
48-
<artifactId>maven-javadoc-plugin</artifactId>
49-
<configuration>
50-
<verbose>false</verbose>
51-
<bottom>Copyright &#169; Christos KK Loverdos</bottom>
52-
</configuration>
53-
</plugin>
50+
<developers>
51+
<developer>
52+
<id>loverdos</id>
53+
<name>Christos KK Loverdos</name>
54+
<email>loverdos@gmail.com</email>
55+
</developer>
56+
</developers>
5457

55-
<plugin>
56-
<artifactId>maven-compiler-plugin</artifactId>
57-
<configuration>
58-
<source>1.4</source>
59-
<target>1.4</target>
60-
<fork>true</fork>
61-
<verbose>true</verbose>
62-
<showWarnings>true</showWarnings>
63-
<showDeprecation>true</showDeprecation>
64-
</configuration>
65-
</plugin>
58+
<scm>
59+
<url>https://loverdos@github.com/loverdos/jbootstrap</url>
60+
<connection>scm:git:https://loverdos@github.com/loverdos/jbootstrap.git</connection>
61+
<developerConnection>scm:git:git@github.com:loverdos/jbootstrap.git</developerConnection>
62+
</scm>
6663

67-
<plugin>
68-
<groupId>org.apache.maven.plugins</groupId>
69-
<artifactId>maven-jar-plugin</artifactId>
70-
<configuration>
71-
<archive>
72-
<manifestEntries>
73-
<Main-class>org.ckkloverdos.jbootstrap.Main</Main-class>
74-
<Specification-Vendor>Christos KK Loverdos</Specification-Vendor>
75-
<Specification-Title>${pom.name}</Specification-Title>
76-
<Specification-Version>${pom.version}</Specification-Version>
77-
<Implementation-Vendor>Christos KK Loverdos</Implementation-Vendor>
78-
<Implementation-Title>${pom.name}</Implementation-Title>
79-
<Implementation-Version>${pom.version}</Implementation-Version>
80-
</manifestEntries>
81-
</archive>
82-
</configuration>
83-
</plugin>
84-
</plugins>
85-
</build>
64+
<issueManagement>
65+
<system>Github</system>
66+
<url>https://github.com/loverdos/jbootstrap/issues</url>
67+
</issueManagement>
8668

87-
<distributionManagement>
88-
<repository>
89-
<id>org.ckkloverdos.mavenrepo.local</id>
90-
<url>file://C:/Projects/org.ckkloverdos.mavenrepo.local/m2repo</url>
91-
</repository>
92-
</distributionManagement>
93-
</project>
69+
<properties>
70+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
71+
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
72+
</properties>
73+
74+
<dependencies>
75+
<dependency>
76+
<groupId>junit</groupId>
77+
<artifactId>junit</artifactId>
78+
<version>4.10</version>
79+
<scope>test</scope>
80+
</dependency>
81+
</dependencies>
82+
</project>

0 commit comments

Comments
 (0)