forked from stritti/log4js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request stritti#24 from stritti/develop
Develop
- Loading branch information
Showing
76 changed files
with
3,323 additions
and
3,603 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,32 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- 4.2.4 | ||
env: | ||
- CXX=g++-4.8 | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-4.8 | ||
before_install: | ||
- "export DISPLAY=:99.0" | ||
- "sh -e /etc/init.d/xvfb start" | ||
- gem update --system | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start | ||
- gem update --system | ||
install: | ||
- npm install | ||
- npm install -g bower grunt-cli | ||
|
||
- cd log4js | ||
- npm install | ||
- npm install -g bower grunt-cli | ||
before_script: | ||
- cd log4js | ||
- npm install | ||
- npm install | ||
script: | ||
- grunt --gruntfile "Gruntfile.js" build --verbose | ||
- grunt --gruntfile "Gruntfile.js" build --verbose | ||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: D3OkluDRa3mkyQAYPMCrbIqvIpZAGOsjqO/21myRDa7MiRjkZJgg2TMxfSTfUsnSf4aMKvLybvD7+YWd1015U7OqFR+I0hkwV49DNlQgw9/Gh7mFAfrM3wO7qibSKdTeaph76hmCQfNxN9UWEdyrnEzRooBlwJDa/skq65z70hc= | ||
file: log4js\target\*.zip | ||
skip_cleanup: true | ||
on: | ||
repo: stritti/log4js | ||
branch: master |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
log4js-servlet/.settings/org.eclipse.jst.common.project.facet.core.prefs
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
log4js-servlet/.settings/org.eclipse.ltk.core.refactoring.prefs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
log4js-servlet/.settings/org.eclipse.wst.common.component.bak
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
log4js-servlet/.settings/org.eclipse.wst.common.project.facet.core.xml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>de.log4js</groupId> | ||
<artifactId>log4js</artifactId> | ||
<name>Log4js</name> | ||
<packaging>war</packaging> | ||
<version>2.0.0Beta1</version> | ||
<scm> | ||
<connection>https://github.com/stritti/log4js.git</connection> | ||
<url>https://github.com/stritti/log4js</url> | ||
</scm> | ||
<properties> | ||
<java-version>1.7</java-version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<checkstyle.config.location>src/main/resources/sybit-checkstyle.xml</checkstyle.config.location> | ||
</properties> | ||
<dependencies> | ||
|
||
<!-- Servlet --> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>servlet-api</artifactId> | ||
<version>2.5</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.servlet.jsp</groupId> | ||
<artifactId>jsp-api</artifactId> | ||
<version>2.1</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.17</version> | ||
</dependency> | ||
|
||
<!-- Test --> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.3.1</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.5.1</version> | ||
<configuration> | ||
<source>${java-version}</source> | ||
<target>${java-version}</target> | ||
<compilerArgument>-Xlint:all</compilerArgument> | ||
<showWarnings>true</showWarnings> | ||
<showDeprecation>true</showDeprecation> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>exec-maven-plugin</artifactId> | ||
<version>1.2.1</version> | ||
<configuration> | ||
<mainClass>org.test.int1.Main</mainClass> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>2.4.3</version> | ||
<configuration> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
<version>0.7.2.201409121644</version> | ||
<configuration> | ||
<rules> | ||
<rule> | ||
<element>CLASS</element> | ||
<excludes> | ||
<exclude>*Test</exclude> | ||
</excludes> | ||
</rule> | ||
</rules> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>default-prepare-agent</id> | ||
<goals> | ||
<goal>prepare-agent</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>default-report</id> | ||
<phase>prepare-package</phase> | ||
<goals> | ||
<goal>report</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>default-check</id> | ||
<goals> | ||
<goal>check</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
</plugins> | ||
</build> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>findbugs-maven-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<configuration> | ||
<xmlOutput>true</xmlOutput> | ||
<findbugsXmlOutputDirectory>${project.build.directory}</findbugsXmlOutputDirectory> | ||
<!-- Optional directory to put findbugs xdoc xml report --> | ||
<xmlOutputDirectory>target/site</xmlOutputDirectory> | ||
<excludeFilterFile>src/main/resources/findbugs-excludes.xml</excludeFilterFile> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
<version>2.15</version> | ||
<configuration> | ||
<enableRulesSummary>false</enableRulesSummary> | ||
<configLocation>${checkstyle.config.location}</configLocation> | ||
</configuration> | ||
<reportSets> | ||
<reportSet> | ||
<reports> | ||
<report>checkstyle</report> | ||
</reports> | ||
</reportSet> | ||
</reportSets> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
</project> |
Oops, something went wrong.