[logback-dev] [GIT] Logback: the generic, reliable, fast and flexible logging framework. branch master updated. v_0.9.30-41-g1e59f24

added by portage for gitosis-gentoo git-noreply at pixie.qos.ch
Tue Oct 25 13:40:33 CEST 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Logback: the generic, reliable, fast and flexible logging framework.".

The branch, master has been updated
       via  1e59f24cc91a372e4ab8d13eab3a20b20b079a23 (commit)
      from  2755e4fc3be21f233f08b138786be0028549ce86 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.qos.ch/gitweb/?p=logback.git;a=commit;h=1e59f24cc91a372e4ab8d13eab3a20b20b079a23
http://github.com/ceki/logback/commit/1e59f24cc91a372e4ab8d13eab3a20b20b079a23

commit 1e59f24cc91a372e4ab8d13eab3a20b20b079a23
Author: Ceki Gulcu <ceki at qos.ch>
Date:   Tue Oct 25 13:40:16 2011 +0200

    pom.xml cleanup, minor edits in news.html

diff --git a/logback-site/src/site/pages/news.html b/logback-site/src/site/pages/news.html
index ad93bc8..4561ba9 100644
--- a/logback-site/src/site/pages/news.html
+++ b/logback-site/src/site/pages/news.html
@@ -66,6 +66,11 @@
     href="http://jira.qos.ch/browse/LBCORE-225">LBCORE-225</a>
     reported by Mark Woon.</p>
 
+    <p>Added <code>ch.qos.logback.core.read</code> to "Import-Package"
+    declaration in logback-classic's manifest file. This fixes <a
+    href="http://jira.qos.ch/browse/LBCLASSIC-131">LBCLASSIC-131</a>
+    reported by Michal Prihoda and Thomas Jaeckle.</p>
+
     <p>Fixed infinitely recursive calls in
     <code>AccessConverter#addError</code> methods as reported in <a
     href="http://jira.qos.ch/browse/LBACCESS-25">LBACCESS-25</a> by
@@ -78,6 +83,8 @@
     Pierre Queinnec.
     </p>
 
+    
+
     <h3>September 21st, 2011 - Release of version 0.9.30</h3>
 
     <p>Archive removal can now deal with prolonged periods of
diff --git a/pom.xml b/pom.xml
index 1fd67a6..592a633 100755
--- a/pom.xml
+++ b/pom.xml
@@ -137,11 +137,7 @@
         <artifactId>tomcat-catalina</artifactId>
         <version>${tomcat.version}</version>
       </dependency>
-      <dependency>
-        <groupId>org.mortbay.jetty</groupId>
-        <artifactId>jetty</artifactId>
-        <version>6.1.1</version>
-      </dependency>
+
       <dependency>
         <groupId>org.eclipse.jetty</groupId>
         <artifactId>jetty-server</artifactId>
@@ -178,9 +174,9 @@
   <build>
     <extensions>
       <extension>
-       <groupId>org.apache.maven.wagon</groupId>
-       <artifactId>wagon-ssh</artifactId>
-       <version>1.0-beta-1</version>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-ssh</artifactId>
+        <version>1.0-beta-1</version>
       </extension>
     </extensions>
 
@@ -253,17 +249,17 @@
           <buildcommands>
             <buildcommand>org.scala-ide.sdt.core.scalabuilder</buildcommand>
           </buildcommands>
-<!--          <classpathContainers>
+          <!--          <classpathContainers>
             <classpathContainer>org.scala-ide.sdt.launching.SCALA_CONTAINER</classpathContainer>
             <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER
             </classpathContainer>
           </classpathContainers>
           -->
-<!--          <excludes>
-            <exclude>org.scala-lang:scala-library</exclude>
-            <exclude>org.scala-lang:scala-compiler</exclude>
-          </excludes>
-    -->
+          <!--          <excludes>
+                  <exclude>org.scala-lang:scala-library</exclude>
+                  <exclude>org.scala-lang:scala-compiler</exclude>
+                </excludes>
+          -->
           <sourceIncludes>
             <sourceInclude>**/*.scala</sourceInclude>
             <sourceInclude>**/*.java</sourceInclude>
@@ -277,13 +273,9 @@
         <version>2.1</version>
         <configuration>
           <descriptors>
-            <descriptor>
-              src/main/assembly/dist.xml
-            </descriptor>
+            <descriptor>src/main/assembly/dist.xml</descriptor>
           </descriptors>
-          <finalName>
-            logback-${project.version}
-          </finalName>
+          <finalName>logback-${project.version}</finalName>
           <appendAssemblyId>false</appendAssemblyId>
           <outputDirectory>target/site/dist/</outputDirectory>
         </configuration>
@@ -299,89 +291,78 @@
         <artifactId>maven-scala-plugin</artifactId>
         <version>2.15.2</version>
       </plugin>
-       <plugin>
+      <plugin>
         <groupId>org.codehaus.groovy.maven</groupId>
         <artifactId>gmaven-plugin</artifactId>
         <version>1.0</version>
       </plugin>
-    </plugins>
-  </build>
 
-  <reporting>
-    <plugins>
+
+      <!-- ================ site plugin ==================== -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
         <version>3.0</version>
         <configuration>
-          <excludeModules>fml</excludeModules>
-          <excludeModules>apt</excludeModules>
-        </configuration>
-      </plugin>
+          <reportPlugins>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-jxr-plugin</artifactId>
+              <version>2.3</version>
+              <configuration>
+                <aggregate>true</aggregate>
+                <javadocDir>target/site/apidocs/</javadocDir>
+                <linkJavadoc>true</linkJavadoc>
+              </configuration>
+            </plugin>
 
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jxr-plugin</artifactId>
-        <version>2.3</version>
-        <configuration>
-          <aggregate>true</aggregate>
-          <javadocDir>target/site/apidocs/</javadocDir>
-          <linkJavadoc>true</linkJavadoc>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
-        <reportSets>
-          <reportSet>
-            <reports/>
-          </reportSet>
-        </reportSets>
-      </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-javadoc-plugin</artifactId>
+              <version>2.8</version>
+              <configuration>
+                <aggregate>true</aggregate>
+                <!--<linksource>true</linksource>-->
+                <links>
+                  <link>
+                    http://java.sun.com/j2se/1.5.0/docs/api
+                  </link>
+                </links>
+                <groups>
+                  <group>
+                    <title>Logback Core</title>
+                    <packages>ch.qos.logback.core:ch.qos.logback.core.*
+                    </packages>
+                  </group>
+                  <group>
+                    <title>Logback Classic</title>
+                    <packages>
+                      ch.qos.logback:ch.qos.logback.classic:ch.qos.logback.classic.*
+                    </packages>
+                  </group>
+                  <group>
+                    <title>Logback Access</title>
+                    <packages>ch.qos.logback.access:ch.qos.logback.access.*
+                    </packages>
+                  </group>
+                  <group>
+                    <title>SLF4J</title>
+                    <packages>org.slf4j:org.slf4j.*</packages>
+                  </group>
+                  <group>
+                    <title>Examples</title>
+                    <packages>chapter*:joran*</packages>
+                  </group>
+                </groups>
+              </configuration>
+            </plugin>
 
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <version>2.8</version>
-        <configuration>
-          <aggregate>true</aggregate>
-          <!--<linksource>true</linksource>-->
-          <links>
-            <link>
-              http://java.sun.com/j2se/1.5.0/docs/api
-            </link>
-          </links>
-          <groups>
-            <group>
-              <title>Logback Core</title>
-              <packages>ch.qos.logback.core:ch.qos.logback.core.*</packages>
-            </group>
-            <group>
-              <title>Logback Classic</title>
-              <packages>
-                ch.qos.logback:ch.qos.logback.classic:ch.qos.logback.classic.*
-              </packages>
-            </group>
-            <group>
-              <title>Logback Access</title>
-              <packages>ch.qos.logback.access:ch.qos.logback.access.*</packages>
-            </group>
-            <group>
-              <title>SLF4J</title>
-              <packages>org.slf4j:org.slf4j.*</packages>
-            </group>
-            <group>
-              <title>Examples</title>
-              <packages>chapter*:joran*</packages>
-            </group>
-          </groups>
+          </reportPlugins>
         </configuration>
       </plugin>
 
     </plugins>
-
-  </reporting>
+  </build>
 
   <distributionManagement>
     <site>
@@ -411,6 +392,7 @@
           <plugin>
             <groupId>com.google.code.maven-license-plugin</groupId>
             <artifactId>maven-license-plugin</artifactId>
+            <version>1.9.0</version>
             <configuration>
               <header>src/main/licenseHeader.txt</header>
               <quiet>false</quiet>

-----------------------------------------------------------------------

Summary of changes:
 logback-site/src/site/pages/news.html |    7 ++
 pom.xml                               |  156 +++++++++++++++------------------
 2 files changed, 76 insertions(+), 87 deletions(-)


hooks/post-receive
-- 
Logback: the generic, reliable, fast and flexible logging framework.


More information about the logback-dev mailing list