This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit 48bb23d3ffe15fa2cf64ed49e1f593fa14ffbc3b Author: Tony CHEMIT <chemit@codelutin.com> Date: Thu Aug 20 11:07:14 2015 +0200 Introduction d'une API pour la configuration des services --- observe-services-api/pom.xml | 6 +++- observe-services-configuration-api/LICENSE.txt | 0 observe-services-configuration-api/README.txt | 0 .../pom.xml | 6 ++-- .../ObserveDataSourceConfiguration.java | 2 +- .../src/test/resources/log4j.properties | 32 ++++++++++++++++++++++ 6 files changed, 41 insertions(+), 5 deletions(-) diff --git a/observe-services-api/pom.xml b/observe-services-api/pom.xml index 590f6e8..1fdd594 100644 --- a/observe-services-api/pom.xml +++ b/observe-services-api/pom.xml @@ -23,7 +23,11 @@ <artifactId>observe-services-model</artifactId> <version>${project.version}</version> </dependency> - + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>observe-services-configuration-api</artifactId> + <version>${project.version}</version> + </dependency> <!-- commons dependencies --> diff --git a/observe-services-configuration-api/LICENSE.txt b/observe-services-configuration-api/LICENSE.txt new file mode 100644 index 0000000..e69de29 diff --git a/observe-services-configuration-api/README.txt b/observe-services-configuration-api/README.txt new file mode 100644 index 0000000..e69de29 diff --git a/observe-services-api/pom.xml b/observe-services-configuration-api/pom.xml similarity index 90% copy from observe-services-api/pom.xml copy to observe-services-configuration-api/pom.xml index 590f6e8..dd4c065 100644 --- a/observe-services-api/pom.xml +++ b/observe-services-configuration-api/pom.xml @@ -10,10 +10,10 @@ <version>4.0.2-SNAPSHOT</version> </parent> - <artifactId>observe-services-api</artifactId> + <artifactId>observe-services-configuration-api</artifactId> - <name>ObServe :: Services API</name> - <description>ObServe services API module</description> + <name>ObServe :: Services Configuration API</name> + <description>ObServe services Configuration API module</description> <dependencies> diff --git a/observe-services-api/src/main/java/fr/ird/observe/services/ObserveDataSourceConfiguration.java b/observe-services-configuration-api/src/main/java/fr/ird/observe/services/configuration/ObserveDataSourceConfiguration.java similarity index 74% rename from observe-services-api/src/main/java/fr/ird/observe/services/ObserveDataSourceConfiguration.java rename to observe-services-configuration-api/src/main/java/fr/ird/observe/services/configuration/ObserveDataSourceConfiguration.java index ae1da54..b611428 100644 --- a/observe-services-api/src/main/java/fr/ird/observe/services/ObserveDataSourceConfiguration.java +++ b/observe-services-configuration-api/src/main/java/fr/ird/observe/services/configuration/ObserveDataSourceConfiguration.java @@ -1,4 +1,4 @@ -package fr.ird.observe.services; +package fr.ird.observe.services.configuration; /** * Created on 19/08/15. diff --git a/observe-services-configuration-api/src/test/resources/log4j.properties b/observe-services-configuration-api/src/test/resources/log4j.properties new file mode 100644 index 0000000..0f21768 --- /dev/null +++ b/observe-services-configuration-api/src/test/resources/log4j.properties @@ -0,0 +1,32 @@ +### +# #%L +# ObServe :: Swing +# %% +# Copyright (C) 2008 - 2010 IRD, Codelutin, Tony Chemit +# %% +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public +# License along with this program. If not, see +# <http://www.gnu.org/licenses/gpl-3.0.html>. +# #L% +### + +# Global logging configuration +log4j.rootLogger=ERROR, stdout +#log4j.rootLogger=ERROR, stdout +# Console output... +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%c:%L) %M - %m%n +#log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) %M - %m%n + +log4j.logger.fr.ird.observe=INFO -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.