Skip to content

Commit

Permalink
Gwt logger rework (#5109)
Browse files Browse the repository at this point in the history
* keep in our source only 2 changed classes other will get from original slf4j lib sources

Signed-off-by: Vitalii Parfonov <vparfonov@codenvy.com>
  • Loading branch information
Vitalii Parfonov authored May 16, 2017
1 parent d7eb5bc commit ae70ebf
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 1,650 deletions.
37 changes: 37 additions & 0 deletions ide/gwt-logger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>${project.build.outputDirectory}/org/eclipse/che/ide/logger/slf4j/emulation</directory>
</resource>
</resources>
<plugins>
<plugin>
Expand All @@ -62,6 +65,40 @@
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<classifier>sources</classifier>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.outputDirectory}/org/eclipse/che/ide/logger/slf4j/emulation
</outputDirectory>
<includes>
org/slf4j/helpers/FormattingTuple.java,
org/slf4j/helpers/MarkerIgnoringBase.java,
org/slf4j/helpers/MessageFormatter.java,
org/slf4j/ILoggerFactory.java,
org/slf4j/Logger.java,
org/slf4j/Marker.java
</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

This file was deleted.

Loading

0 comments on commit ae70ebf

Please sign in to comment.