Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 84df9c9

Browse files
committed
initial project template
1 parent a1d99af commit 84df9c9

5 files changed

Lines changed: 174 additions & 1 deletion

File tree

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# java files
2+
3+
*.class
4+
hs_err_pid*
5+
*.jar
6+
7+
# maven files
8+
9+
target/
10+
pom.xml.tag
11+
pom.xml.releaseBackup
12+
pom.xml.versionsBackup
13+
pom.xml.next
14+
release.properties
15+
repo/.locks
16+
17+
# eclipse files
18+
19+
.metadata
20+
bin/
21+
tmp/
22+
*.tmp
23+
*.bak
24+
*.swp
25+
*~.nib
26+
local.properties
27+
.settings/
28+
.loadpath
29+
.project
30+
*.launch
31+
.classpath
32+
.target
33+
34+
# intellij files
35+
36+
.idea/
37+
out/
38+
*.iml
39+
*.iws

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: java
2+
jdk:
3+
- oraclejdk8
4+
notifications:
5+
email: false
6+
script: mvn test
7+
install: true

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017
3+
Copyright (c) 2017 delthas
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pom.xml

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>fr.delthas</groupId>
5+
<artifactId>javamp3</artifactId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
8+
<name>JavaMP3</name>
9+
<url>https://github.com/delthas/javamp3</url>
10+
<description>A fast and lightweight MP3 decoding library</description>
11+
12+
<inceptionYear>2017</inceptionYear>
13+
<issueManagement>
14+
<system>GitHub</system>
15+
<url>https://github.com/delthas/javamp3/issues</url>
16+
</issueManagement>
17+
18+
<properties>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
</properties>
21+
22+
<licenses>
23+
<license>
24+
<name>MIT License</name>
25+
<url>http://www.opensource.org/licenses/mit-license.php</url>
26+
</license>
27+
</licenses>
28+
29+
<developers>
30+
<developer>
31+
<name>delthas</name>
32+
<email>delthas@dille.cc</email>
33+
<timezone>+1</timezone>
34+
<url>https://delthas.fr</url>
35+
</developer>
36+
</developers>
37+
38+
<scm>
39+
<connection>scm:git:git@github.com:delthas/javamp3.git</connection>
40+
<developerConnection>scm:git:git@github.com:delthas/javamp3.git</developerConnection>
41+
<url>git@github.com:delthas/javamp3.git</url>
42+
</scm>
43+
44+
<distributionManagement>
45+
<snapshotRepository>
46+
<id>ossrh</id>
47+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
48+
</snapshotRepository>
49+
<repository>
50+
<id>ossrh</id>
51+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
52+
</repository>
53+
</distributionManagement>
54+
55+
<dependencies>
56+
</dependencies>
57+
58+
<build>
59+
<plugins>
60+
<plugin>
61+
<groupId>org.apache.maven.plugins</groupId>
62+
<artifactId>maven-compiler-plugin</artifactId>
63+
<version>3.5.1</version>
64+
<configuration>
65+
<source>1.8</source>
66+
<target>1.8</target>
67+
</configuration>
68+
</plugin>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-source-plugin</artifactId>
72+
<version>3.0.0</version>
73+
<executions>
74+
<execution>
75+
<id>attach-sources</id>
76+
<goals>
77+
<goal>jar-no-fork</goal>
78+
</goals>
79+
</execution>
80+
</executions>
81+
</plugin>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-javadoc-plugin</artifactId>
85+
<version>2.10.3</version>
86+
<executions>
87+
<execution>
88+
<id>attach-javadocs</id>
89+
<goals>
90+
<goal>jar</goal>
91+
</goals>
92+
</execution>
93+
</executions>
94+
</plugin>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-gpg-plugin</artifactId>
98+
<version>1.6</version>
99+
<executions>
100+
<execution>
101+
<id>sign-artifacts</id>
102+
<phase>verify</phase>
103+
<goals>
104+
<goal>sign</goal>
105+
</goals>
106+
</execution>
107+
</executions>
108+
</plugin>
109+
<plugin>
110+
<groupId>org.sonatype.plugins</groupId>
111+
<artifactId>nexus-staging-maven-plugin</artifactId>
112+
<version>1.6.7</version>
113+
<extensions>true</extensions>
114+
<configuration>
115+
<serverId>ossrh</serverId>
116+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
117+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
118+
</configuration>
119+
</plugin>
120+
</plugins>
121+
</build>
122+
123+
</project>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package fr.delthas.javamp3;
2+
3+
public class JavaMP3 {
4+
}

0 commit comments

Comments
 (0)