-
Notifications
You must be signed in to change notification settings - Fork 7
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 #1 from logscape/maven-switch
Maven switch
- Loading branch information
Showing
117 changed files
with
1,690 additions
and
3,080 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Java Maven CircleCI 2.0 configuration file | ||
# | ||
# Check https://circleci.com/docs/2.0/language-java/ for more details | ||
# | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
# specify the version you desire here | ||
- image: circleci/openjdk:8-jdk | ||
|
||
# Specify service dependencies here if necessary | ||
# CircleCI maintains a library of pre-built images | ||
# documented at https://circleci.com/docs/2.0/circleci-images/ | ||
# - image: circleci/postgres:9.4 | ||
|
||
working_directory: ~/repo | ||
|
||
environment: | ||
# Customize the JVM maximum heap limit | ||
MAVEN_OPTS: -Xmx4096m | ||
|
||
steps: | ||
- checkout | ||
|
||
# Download and cache dependencies | ||
- restore_cache: | ||
keys: | ||
- v1-dependencies-{{ checksum "pom.xml" }} | ||
# fallback to using the latest cache if no exact match is found | ||
- v1-dependencies- | ||
|
||
- run: mvn dependency:go-offline | ||
|
||
- save_cache: | ||
paths: | ||
- ~/.m2 | ||
key: v1-dependencies-{{ checksum "pom.xml" }} | ||
|
||
# run tests! | ||
- run: mvn integration-test |
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.logscape</groupId> | ||
<artifactId>boot</artifactId> | ||
<version>3.5.0-SNAPSHOT</version> | ||
|
||
<parent> | ||
<groupId>com.logscape</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>3.5.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<directory>resources</directory> | ||
</resource> | ||
</resources> | ||
<testSourceDirectory>test</testSourceDirectory> | ||
<testResources> | ||
<testResource> | ||
<directory>test-data</directory> | ||
</testResource></testResources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<compilerArgs> | ||
<arg>-Xlint:all,-serial,-rawtypes</arg> | ||
<arg>-parameters</arg> | ||
<!-- <arg>-Werror</arg>--> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>test-jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
</build> | ||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,6 +1,8 @@ | ||
Tue Sep 03 09:11:34 BST 2013 BOOTSTRAPPER SETUP | ||
Tue Sep 03 09:11:34 BST 2013 Exec:[stcp://localhost:11000, 6] | ||
Tue Sep 03 09:11:34 BST 2013 BOOTSTRAPPER LOADING AGENT | ||
Tue Sep 03 09:11:34 BST 2013 BOOTSTRAPPER RUNNING | ||
Tue Sep 03 09:11:34 BST 2013 Exited, exitCode:1 | ||
Tue Sep 03 09:11:35 BST 2013 BOOTSTRAPPER EXIT | ||
Mon Dec 09 13:56:26 GMT 2019 BOOTSTRAPPER SETUP | ||
Mon Dec 09 13:56:26 GMT 2019 DiskLeft (mb): Home:1000 Work:1000 | ||
Mon Dec 09 13:56:26 GMT 2019 Ignoring: Jolokia Agent not configured in boot.properties | ||
Mon Dec 09 13:56:26 GMT 2019 Exec:[stcp://localhost:11000, 6] | ||
Mon Dec 09 13:56:26 GMT 2019 BOOTSTRAPPER LOADING AGENT | ||
Mon Dec 09 13:56:26 GMT 2019 BOOTSTRAPPER RUNNING | ||
Mon Dec 09 13:56:26 GMT 2019 Exited, exitCode:1 | ||
Mon Dec 09 13:56:27 GMT 2019 BOOTSTRAPPER EXIT |
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# @version $Id: log4j.properties,v 1.7 2007/11/08 11:49:04 avernei Exp $ | ||
|
||
log4j.logger.com=INFO, file, stdout | ||
|
||
# ------------------------- stdout ------------------------------ | ||
log4j.appender.stdout=org.apache.log4j.ConsoleAppender | ||
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout | ||
|
||
## Fast version without line information | ||
#log4j.appender.stdout.layout.ConversionPattern=%d{HH:mm:ss,SSS} %p %t %-10.16c - %m%n | ||
'## Slow version good for DEBUG | ||
log4j.appender.stdout.layout.ConversionPattern=%d{HH:mm:ss,SSS} %p %t (%F:%L)\t - %m%n | ||
|
||
# ---------------- Rolling File -------------------------- | ||
log4j.appender.file=org.apache.log4j.DailyRollingFileAppender | ||
log4j.appender.file.File=common.log | ||
log4j.appender.file.datePattern='.'yyyyMMdd | ||
log4j.appender.file.layout=org.apache.log4j.PatternLayout | ||
log4j.appender.file.layout.ConversionPattern=%date %p %t (%F:%L)\t - %m%n |
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,54 @@ | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.logscape</groupId> | ||
<artifactId>common</artifactId> | ||
<version>3.5.0-SNAPSHOT</version> | ||
|
||
<parent> | ||
<groupId>com.logscape</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>3.5.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<directory>resources</directory> | ||
</resource> | ||
</resources> | ||
<testSourceDirectory>test</testSourceDirectory> | ||
<testResources> | ||
<testResource> | ||
<directory>test-data</directory> | ||
</testResource></testResources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<compilerArgs> | ||
<arg>-Xlint:all,-serial,-rawtypes</arg> | ||
<arg>-parameters</arg> | ||
<!-- <arg>-Werror</arg>--> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>test-jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
</build> | ||
</project> |
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,19 @@ | ||
# @version $Id: log4j.properties,v 1.7 2007/11/08 11:49:04 avernei Exp $ | ||
|
||
log4j.logger.com=INFO, file | ||
|
||
# ------------------------- stdout ------------------------------ | ||
log4j.appender.stdout=org.apache.log4j.ConsoleAppender | ||
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout | ||
|
||
## Fast version without line information | ||
#log4j.appender.stdout.layout.ConversionPattern=%d{HH:mm:ss,SSS} %p %t %-10.16c - %m%n | ||
'## Slow version good for DEBUG | ||
log4j.appender.stdout.layout.ConversionPattern=%d{HH:mm:ss,SSS} %p %t (%F:%L)\t - %m%n | ||
|
||
# ---------------- Rolling File -------------------------- | ||
log4j.appender.file=org.apache.log4j.DailyRollingFileAppender | ||
log4j.appender.file.File=common.log | ||
log4j.appender.file.datePattern='.'yyyyMMdd | ||
log4j.appender.file.layout=org.apache.log4j.PatternLayout | ||
log4j.appender.file.layout.ConversionPattern=%date %p %t (%F:%L)\t - %m%n |
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
Oops, something went wrong.