Skip to content

Commit 6c5ba50

Browse files
committed
- changed the autocrlf option to true under Windows. This should help
working with development done on Linux where the line endings is LF. This is still somewhat experimental.
1 parent 8ef9646 commit 6c5ba50

File tree

1,006 files changed

+86823
-86823
lines changed

Some content is hidden

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

1,006 files changed

+86823
-86823
lines changed

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
.settings
2-
target
3-
.classpath
4-
.project
1+
.settings
2+
target
3+
.classpath
4+
.project
55
*~

LICENSE.txt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
Logback LICENSE
2-
---------------
3-
4-
Logback: the reliable, generic, fast and flexible logging framework.
5-
Copyright (C) 1999-2009, QOS.ch. All rights reserved.
6-
7-
This program and the accompanying materials are dual-licensed under
8-
either the terms of the Eclipse Public License v1.0 as published by
9-
the Eclipse Foundation
10-
11-
or (per the licensee's choosing)
12-
13-
under the terms of the GNU Lesser General Public License version 2.1
14-
as published by the Free Software Foundation.
15-
1+
Logback LICENSE
2+
---------------
3+
4+
Logback: the reliable, generic, fast and flexible logging framework.
5+
Copyright (C) 1999-2009, QOS.ch. All rights reserved.
6+
7+
This program and the accompanying materials are dual-licensed under
8+
either the terms of the Eclipse Public License v1.0 as published by
9+
the Eclipse Foundation
10+
11+
or (per the licensee's choosing)
12+
13+
under the terms of the GNU Lesser General Public License version 2.1
14+
as published by the Free Software Foundation.
15+

README.txt

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
2-
Thank you for downloading logback, the reliable, generic, fast and
3-
flexible logging library for Java.
4-
5-
The Logback documentation can be found under the docs/ directory.
6-
7-
Building logback
8-
================
9-
10-
Building logback is documented at:
11-
12-
http://logback.qos.ch/manual/introduction.html#BuildingLogback
13-
14-
In case of problems
15-
===================
16-
17-
In case of problems please do not hesitate to post an e-mail message
18-
on the [email protected] mailing list. However, please do not
19-
directly e-mail logback developers. The answer to your question might
20-
be useful to other users. Moreover, there are many knowledgeable users
21-
on the logback-user mailing lists who can quickly answer your
1+
2+
Thank you for downloading logback, the reliable, generic, fast and
3+
flexible logging library for Java.
4+
5+
The Logback documentation can be found under the docs/ directory.
6+
7+
Building logback
8+
================
9+
10+
Building logback is documented at:
11+
12+
http://logback.qos.ch/manual/introduction.html#BuildingLogback
13+
14+
In case of problems
15+
===================
16+
17+
In case of problems please do not hesitate to post an e-mail message
18+
on the [email protected] mailing list. However, please do not
19+
directly e-mail logback developers. The answer to your question might
20+
be useful to other users. Moreover, there are many knowledgeable users
21+
on the logback-user mailing lists who can quickly answer your
2222
questions.

codeStyle.xml

Lines changed: 264 additions & 264 deletions
Large diffs are not rendered by default.

logback-access/LICENSE.txt

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
Logback LICENSE
2-
---------------
3-
4-
Logback: the reliable, generic, fast and flexible logging library for
5-
Java.
6-
7-
Copyright (C) 2000-2008, QOS.ch
8-
9-
Source code and binaries for logback, including logback-core,
10-
logback-classic and logback-access modules, are distributed under the
11-
GNU Lesser General Public License Version 2.1, as published by the
12-
Free Software Foundation.
13-
14-
This library is free software; you can redistribute it and/or modify
15-
it under the terms of the GNU Lesser General Public License as
16-
published by the Free Software Foundation; either version 2.1 of the
17-
License, or (at your option) any later version.
18-
19-
This library is distributed in the hope that it will be useful, but
20-
WITHOUT ANY WARRANTY; without even the implied warranty of
21-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22-
Lesser General Public License for more details.
1+
Logback LICENSE
2+
---------------
3+
4+
Logback: the reliable, generic, fast and flexible logging library for
5+
Java.
6+
7+
Copyright (C) 2000-2008, QOS.ch
8+
9+
Source code and binaries for logback, including logback-core,
10+
logback-classic and logback-access modules, are distributed under the
11+
GNU Lesser General Public License Version 2.1, as published by the
12+
Free Software Foundation.
13+
14+
This library is free software; you can redistribute it and/or modify
15+
it under the terms of the GNU Lesser General Public License as
16+
published by the Free Software Foundation; either version 2.1 of the
17+
License, or (at your option) any later version.
18+
19+
This library is distributed in the hope that it will be useful, but
20+
WITHOUT ANY WARRANTY; without even the implied warranty of
21+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22+
Lesser General Public License for more details.

logback-access/build.xml

Lines changed: 90 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,90 @@
1-
<project name="lbaccess" default="usage" basedir=".">
2-
3-
<property file="build.properties" />
4-
5-
<!-- The base directory relative to which most targets are built -->
6-
<property name="base" value="." />
7-
8-
<property name="source.home" value="./src/java/" />
9-
<property name="javac.dest" value="./classes" />
10-
11-
<property name="deprecation" value="on" />
12-
<property name="debug" value="on" />
13-
14-
<!-- The stem where most LB core source code is located. -->
15-
<property name="stem" value="com/logback/access" />
16-
17-
<path id="access.classpath">
18-
<pathelement location="${source.home}" />
19-
<pathelement location="${javac.dest}" />
20-
</path>
21-
22-
23-
<!-- ================================================================= -->
24-
<!-- TARGETS -->
25-
<!-- ================================================================= -->
26-
27-
28-
29-
<!-- ================================================================= -->
30-
<!-- Default target -->
31-
<!-- ================================================================= -->
32-
33-
<target name="usage">
34-
<echo>
35-
36-
These are the targets supported by this ANT build scpript:
37-
38-
build - compile all project files, if a certain library is missing,
39-
then the compilation of its dependents are skipped.
40-
</echo>
41-
</target>
42-
43-
<target name="prepare">
44-
<mkdir dir="${javac.dest}" />
45-
</target>
46-
47-
<!-- ================================================================= -->
48-
<!-- Remove all generated files such as compiled class files and test -->
49-
<!-- case output. -->
50-
<!-- ================================================================= -->
51-
<target name="clean">
52-
<delete dir="${javac.dest}/" />
53-
</target>
54-
55-
<!-- ================================================================= -->
56-
<!-- Compile test cases and related source files. -->
57-
<!-- ================================================================= -->
58-
<target name="build" depends="prepare">
59-
<javac srcdir="${source.home}" destdir="${javac.dest}"
60-
excludes="${stem}/xynz/toto.java"
61-
deprecation="${deprecation}"
62-
debug="${debug}">
63-
<classpath refid="access.classpath" />
64-
</javac>
65-
</target>
66-
67-
68-
<target name="logback-access.jar" depends="build">
69-
<delete>
70-
<fileset dir=".">
71-
<include name="logback-access*.jar"/>
72-
</fileset>
73-
</delete>
74-
75-
<jar jarfile="logback-access.jar" basedir="${javac.dest}"
76-
includes="${stem}/**/*.class"
77-
excludes="**/UnitTest**">
78-
79-
<manifest>
80-
<section name="com/logback/access">
81-
<attribute name="Implementation-Title" value="LOGBack-access"/>
82-
<attribute name="Implementation-Version" value="${version}"/>
83-
<attribute name="Implementation-Vendor" value="LOGBack.com"/>
84-
</section>
85-
</manifest>
86-
</jar>
87-
</target>
88-
89-
90-
</project>
1+
<project name="lbaccess" default="usage" basedir=".">
2+
3+
<property file="build.properties" />
4+
5+
<!-- The base directory relative to which most targets are built -->
6+
<property name="base" value="." />
7+
8+
<property name="source.home" value="./src/java/" />
9+
<property name="javac.dest" value="./classes" />
10+
11+
<property name="deprecation" value="on" />
12+
<property name="debug" value="on" />
13+
14+
<!-- The stem where most LB core source code is located. -->
15+
<property name="stem" value="com/logback/access" />
16+
17+
<path id="access.classpath">
18+
<pathelement location="${source.home}" />
19+
<pathelement location="${javac.dest}" />
20+
</path>
21+
22+
23+
<!-- ================================================================= -->
24+
<!-- TARGETS -->
25+
<!-- ================================================================= -->
26+
27+
28+
29+
<!-- ================================================================= -->
30+
<!-- Default target -->
31+
<!-- ================================================================= -->
32+
33+
<target name="usage">
34+
<echo>
35+
36+
These are the targets supported by this ANT build scpript:
37+
38+
build - compile all project files, if a certain library is missing,
39+
then the compilation of its dependents are skipped.
40+
</echo>
41+
</target>
42+
43+
<target name="prepare">
44+
<mkdir dir="${javac.dest}" />
45+
</target>
46+
47+
<!-- ================================================================= -->
48+
<!-- Remove all generated files such as compiled class files and test -->
49+
<!-- case output. -->
50+
<!-- ================================================================= -->
51+
<target name="clean">
52+
<delete dir="${javac.dest}/" />
53+
</target>
54+
55+
<!-- ================================================================= -->
56+
<!-- Compile test cases and related source files. -->
57+
<!-- ================================================================= -->
58+
<target name="build" depends="prepare">
59+
<javac srcdir="${source.home}" destdir="${javac.dest}"
60+
excludes="${stem}/xynz/toto.java"
61+
deprecation="${deprecation}"
62+
debug="${debug}">
63+
<classpath refid="access.classpath" />
64+
</javac>
65+
</target>
66+
67+
68+
<target name="logback-access.jar" depends="build">
69+
<delete>
70+
<fileset dir=".">
71+
<include name="logback-access*.jar"/>
72+
</fileset>
73+
</delete>
74+
75+
<jar jarfile="logback-access.jar" basedir="${javac.dest}"
76+
includes="${stem}/**/*.class"
77+
excludes="**/UnitTest**">
78+
79+
<manifest>
80+
<section name="com/logback/access">
81+
<attribute name="Implementation-Title" value="LOGBack-access"/>
82+
<attribute name="Implementation-Version" value="${version}"/>
83+
<attribute name="Implementation-Vendor" value="LOGBack.com"/>
84+
</section>
85+
</manifest>
86+
</jar>
87+
</target>
88+
89+
90+
</project>

0 commit comments

Comments
 (0)