Skip to content

Commit 23cf282

Browse files
author
Jose San Leandro
committed
Added copyright notice in every file
1 parent 77ced8e commit 23cf282

File tree

62 files changed

+915
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+915
-7
lines changed

build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
project.version = '0.2-SNAPSHOT'
216

317
buildscript {

pom.xml

Lines changed: 61 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
8+
This program is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
GNU General Public License for more details.
12+
13+
You should have received a copy of the GNU General Public License
14+
along with this program. If not, see <http://www.gnu.org/licenses/>.
15+
-->
216
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
317
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
418
<modelVersion>4.0.0</modelVersion>
@@ -9,6 +23,13 @@
923
<packaging>jar</packaging>
1024
<name>Java Logging</name>
1125
<description>Logging for Java projects</description>
26+
<url>https://github.com/osoco/java-logging</url>
27+
<licenses>
28+
<license>
29+
<name>General Public License, v3</name>
30+
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
31+
</license>
32+
</licenses>
1233
<properties>
1334
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1435
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -275,6 +296,42 @@
275296
</execution>
276297
</executions>
277298
</plugin>
299+
<plugin>
300+
<groupId>org.sonatype.plugins</groupId>
301+
<artifactId>nexus-staging-maven-plugin</artifactId>
302+
<version>1.6.7</version>
303+
<extensions>true</extensions>
304+
<configuration>
305+
<serverId>ossrh</serverId>
306+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
307+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
308+
</configuration>
309+
</plugin>
310+
<plugin>
311+
<groupId>org.apache.maven.plugins</groupId>
312+
<artifactId>maven-gpg-plugin</artifactId>
313+
<version>1.5</version>
314+
<executions>
315+
<execution>
316+
<id>sign-artifacts</id>
317+
<phase>verify</phase>
318+
<goals>
319+
<goal>sign</goal>
320+
</goals>
321+
</execution>
322+
</executions>
323+
</plugin>
324+
<plugin>
325+
<groupId>org.sonatype.plugins</groupId>
326+
<artifactId>nexus-staging-maven-plugin</artifactId>
327+
<version>1.6.7</version>
328+
<extensions>true</extensions>
329+
<configuration>
330+
<serverId>ossrh</serverId>
331+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
332+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
333+
</configuration>
334+
</plugin>
278335
</plugins>
279336
</build>
280337

@@ -320,15 +377,12 @@
320377

321378
<distributionManagement>
322379
<snapshotRepository>
323-
<id>osoco-snapshots</id>
324-
<name>OSOCO's Nexus repository</name>
325-
<url>http://nexus.osoco.es/repository/maven-snapshots</url>
380+
<id>ossrh</id>
381+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
326382
</snapshotRepository>
327383
<repository>
328-
<id>osoco-releases</id>
329-
<name>OSOCO's Nexus repository</name>
330-
<url>http://nexus.osoco.es/repository/maven-releases</url>
384+
<id>ossrh</id>
385+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
331386
</repository>
332387
</distributionManagement>
333-
334388
</project>

src/main/java/es/osoco/logging/Logging.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
package es.osoco.logging;
216

317
/**

src/main/java/es/osoco/logging/LoggingContext.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
package es.osoco.logging;
216

317
/**

src/main/java/es/osoco/logging/LoggingFactory.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
package es.osoco.logging;
216

317
import es.osoco.logging.adapter.LoggingAdapter;

src/main/java/es/osoco/logging/adapter/AbstractLoggingAdapter.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
package es.osoco.logging.adapter;
216

317
import es.osoco.logging.LoggingContext;

src/main/java/es/osoco/logging/adapter/AbstractLoggingAdapterBuilder.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
package es.osoco.logging.adapter;
216

317
import es.osoco.logging.Logging;

src/main/java/es/osoco/logging/adapter/LoggingAdapter.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
package es.osoco.logging.adapter;
216

317
import es.osoco.logging.Logging;

src/main/java/es/osoco/logging/adapter/LoggingAdapterBuilder.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
package es.osoco.logging.adapter;
216

317
import es.osoco.logging.Logging;

src/main/java/es/osoco/logging/adapter/LoggingAdapterBuilderRegistry.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
This program is free software: you can redistribute it and/or modify
3+
it under the terms of the GNU General Public License as published by
4+
the Free Software Foundation, either version 3 of the License, or
5+
(at your option) any later version.
6+
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
12+
You should have received a copy of the GNU General Public License
13+
along with this program. If not, see <http://www.gnu.org/licenses/>.
14+
*/
115
package es.osoco.logging.adapter;
216

317
import es.osoco.logging.config.LoggingConfiguration;

0 commit comments

Comments
 (0)