Maven-helper-plugin-commits
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
October 2010
- 2 participants
- 15 discussions
Author: tchemit
Date: 2010-10-08 14:41:34 +0200 (Fri, 08 Oct 2010)
New Revision: 769
Url: http://nuiton.org/repositories/revision/maven-helper-plugin/769
Log:
Evolution #922: Update dependencies and optimize them
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-08 12:34:58 UTC (rev 768)
+++ trunk/pom.xml 2010-10-08 12:41:34 UTC (rev 769)
@@ -55,7 +55,7 @@
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
- <version>2.4</version>
+ <version>2.5</version>
</dependency>
<dependency>
@@ -76,12 +76,6 @@
<version>1.2</version>
</dependency>
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity</artifactId>
- <version>1.6.3</version>
- </dependency>
-
<!-- plexus -->
<dependency>
@@ -93,7 +87,7 @@
<dependency>
<groupId>org.sonatype.plexus</groupId>
<artifactId>plexus-sec-dispatcher</artifactId>
- <version>1.3.1</version>
+ <version>1.4</version>
</dependency>
<dependency>
@@ -193,9 +187,9 @@
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
- <version>1.4</version>
- <!--TODO test this -->
- <!--<version>1.4.2</version>-->
+ <version>1.4.1</version>
+ <!--Use this version when available on central -->
+ <!--<version>1.4.3</version>-->
</dependency>
@@ -246,7 +240,7 @@
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
- <version>1.2.14</version>
+ <version>1.2.16</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -262,17 +256,8 @@
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-api</artifactId>
</exclusion>
- <exclusion>
- <groupId>velocity</groupId>
- <artifactId>velocity</artifactId>
- </exclusion>
</exclusions>
</dependency>
- <!--dependency>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.2</version>
- </dependency-->
</dependencies>
1
0
r768 - in trunk/src/main: java/org/nuiton/helper/plugin resources/META-INF/plexus
by tchemit@users.nuiton.org 08 Oct '10
by tchemit@users.nuiton.org 08 Oct '10
08 Oct '10
Author: tchemit
Date: 2010-10-08 14:34:58 +0200 (Fri, 08 Oct 2010)
New Revision: 768
Url: http://nuiton.org/repositories/revision/maven-helper-plugin/768
Log:
revert components hint : stay on our maven-helper-plugin otherwise it won't work for plugins using this project...
Modified:
trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java
trunk/src/main/resources/META-INF/plexus/components.xml
Modified: trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java
===================================================================
--- trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java 2010-10-08 10:23:25 UTC (rev 767)
+++ trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java 2010-10-08 12:34:58 UTC (rev 768)
@@ -148,7 +148,7 @@
/**
* password decypher
*
- * @component
+ * @component roleHint="maven-helper-plugin"
* @since 1.1.0
*/
protected SecDispatcher sec;
Modified: trunk/src/main/resources/META-INF/plexus/components.xml
===================================================================
--- trunk/src/main/resources/META-INF/plexus/components.xml 2010-10-08 10:23:25 UTC (rev 767)
+++ trunk/src/main/resources/META-INF/plexus/components.xml 2010-10-08 12:34:58 UTC (rev 768)
@@ -1,33 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied. See the License for the
-specific language governing permissions and limitations
-under the License.
--->
<component-set>
<components>
<component>
<role>org.sonatype.plexus.components.cipher.PlexusCipher</role>
<role-hint>maven-helper-plugin</role-hint>
- <implementation>org.nuiton.components.cipher.DefaultPlexusCipher</implementation>
+ <implementation>org.sonatype.plexus.components.cipher.DefaultPlexusCipher</implementation>
</component>
<component>
<role>org.sonatype.plexus.components.sec.dispatcher.SecDispatcher</role>
<role-hint>maven-helper-plugin</role-hint>
- <implementation>org.nuiton.components.sec.dispatcher.DefaultSecDispatcher</implementation>
+ <implementation>org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher</implementation>
<requirements>
<requirement>
<role>org.sonatype.plexus.components.cipher.PlexusCipher</role>
1
0
Author: tchemit
Date: 2010-10-08 12:23:25 +0200 (Fri, 08 Oct 2010)
New Revision: 767
Url: http://nuiton.org/repositories/revision/maven-helper-plugin/767
Log:
change copyright (I am part of it :))
reformat some classes
Modified:
trunk/pom.xml
trunk/src/it/settings.xml
trunk/src/it/share-server-secret/single/pom.xml
trunk/src/main/java/org/nuiton/components/cipher/DefaultPlexusCipher.java
trunk/src/main/java/org/nuiton/components/sec/dispatcher/DefaultSecDispatcher.java
trunk/src/main/java/org/nuiton/helper/plugin/CheckAutoContainerPlugin.java
trunk/src/main/java/org/nuiton/helper/plugin/CollectFilesMojo.java
trunk/src/main/java/org/nuiton/helper/plugin/SendEmailMojo.java
trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java
trunk/src/main/java/org/nuiton/io/FileUpdater.java
trunk/src/main/java/org/nuiton/io/FileUpdaterHelper.java
trunk/src/main/java/org/nuiton/io/MirroredFileUpdater.java
trunk/src/main/java/org/nuiton/io/PropertiesDateRemoveFilterStream.java
trunk/src/main/java/org/nuiton/io/SortedProperties.java
trunk/src/main/java/org/nuiton/io/mail/MailSender.java
trunk/src/main/java/org/nuiton/io/mail/ProjectJavamailMailSender.java
trunk/src/main/java/org/nuiton/io/rest/DefaultRestClientConfiguration.java
trunk/src/main/java/org/nuiton/io/rest/RestClient.java
trunk/src/main/java/org/nuiton/io/rest/RestClientConfiguration.java
trunk/src/main/java/org/nuiton/io/rest/RestDataNotFoundException.java
trunk/src/main/java/org/nuiton/io/rest/RestException.java
trunk/src/main/java/org/nuiton/io/rest/RestRequest.java
trunk/src/main/java/org/nuiton/io/rest/RestRequestBuilder.java
trunk/src/main/java/org/nuiton/io/rest/RestSession.java
trunk/src/main/java/org/nuiton/io/xpp3/AbstractXpp3Reader.java
trunk/src/main/java/org/nuiton/io/xpp3/DataConverter.java
trunk/src/main/java/org/nuiton/io/xpp3/DefaultDataConverter.java
trunk/src/main/java/org/nuiton/io/xpp3/PropertyMapper.java
trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Helper.java
trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Reader.java
trunk/src/main/java/org/nuiton/plugin/AbstractPlugin.java
trunk/src/main/java/org/nuiton/plugin/DependencyUtil.java
trunk/src/main/java/org/nuiton/plugin/Plugin.java
trunk/src/main/java/org/nuiton/plugin/PluginHelper.java
trunk/src/main/java/org/nuiton/plugin/PluginIOContext.java
trunk/src/main/java/org/nuiton/plugin/PluginWithEncoding.java
trunk/src/main/java/org/nuiton/plugin/VelocityTemplateGenerator.java
trunk/src/site/apt/Todo.apt
trunk/src/site/apt/index.apt
trunk/src/site/apt/mojo-examples.apt
trunk/src/site/apt/mojo-framework.apt
trunk/src/site/apt/mojo-testFramework.apt
trunk/src/site/apt/mojo-usages.apt
trunk/src/site/site_en.xml
trunk/src/test/java/org/nuiton/helper/plugin/SendEmailMojoTest.java
trunk/src/test/java/org/nuiton/io/JavaDummy.java
trunk/src/test/java/org/nuiton/io/JavaFileUpdaterTest.java
trunk/src/test/java/org/nuiton/io/JaxxFileUpdaterTest.java
trunk/src/test/java/org/nuiton/io/xpp3/Identity.java
trunk/src/test/java/org/nuiton/io/xpp3/IdentityXpp3Reader.java
trunk/src/test/java/org/nuiton/io/xpp3/Xpp3HelperTest.java
trunk/src/test/java/org/nuiton/io/xpp3/Xpp3ReaderTest.java
trunk/src/test/java/org/nuiton/plugin/AbstractMojoTest.java
trunk/src/test/java/org/nuiton/plugin/PluginHelperTest.java
trunk/src/test/java/org/nuiton/plugin/TestHelper.java
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/pom.xml 2010-10-08 10:23:25 UTC (rev 767)
@@ -6,7 +6,7 @@
$Id$
$HeadURL$
%%
- Copyright (C) 2009 - 2010 CodeLutin
+ Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
%%
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/it/settings.xml
===================================================================
--- trunk/src/it/settings.xml 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/it/settings.xml 2010-10-08 10:23:25 UTC (rev 767)
@@ -1,24 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied. See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
<settings>
<servers>
Modified: trunk/src/it/share-server-secret/single/pom.xml
===================================================================
--- trunk/src/it/share-server-secret/single/pom.xml 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/it/share-server-secret/single/pom.xml 2010-10-08 10:23:25 UTC (rev 767)
@@ -70,7 +70,7 @@
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
- <version>1.3</version>
+ <version>1.5</version>
<executions>
<execution>
<phase>initialize</phase>
Modified: trunk/src/main/java/org/nuiton/components/cipher/DefaultPlexusCipher.java
===================================================================
--- trunk/src/main/java/org/nuiton/components/cipher/DefaultPlexusCipher.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/components/cipher/DefaultPlexusCipher.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/components/sec/dispatcher/DefaultSecDispatcher.java
===================================================================
--- trunk/src/main/java/org/nuiton/components/sec/dispatcher/DefaultSecDispatcher.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/components/sec/dispatcher/DefaultSecDispatcher.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/helper/plugin/CheckAutoContainerPlugin.java
===================================================================
--- trunk/src/main/java/org/nuiton/helper/plugin/CheckAutoContainerPlugin.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/helper/plugin/CheckAutoContainerPlugin.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/helper/plugin/CollectFilesMojo.java
===================================================================
--- trunk/src/main/java/org/nuiton/helper/plugin/CollectFilesMojo.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/helper/plugin/CollectFilesMojo.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/helper/plugin/SendEmailMojo.java
===================================================================
--- trunk/src/main/java/org/nuiton/helper/plugin/SendEmailMojo.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/helper/plugin/SendEmailMojo.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java
===================================================================
--- trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
@@ -148,7 +148,7 @@
/**
* password decypher
*
- * @component roleHint="maven-helper-plugin"
+ * @component
* @since 1.1.0
*/
protected SecDispatcher sec;
Modified: trunk/src/main/java/org/nuiton/io/FileUpdater.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/FileUpdater.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/FileUpdater.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/FileUpdaterHelper.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/FileUpdaterHelper.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/FileUpdaterHelper.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/MirroredFileUpdater.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/MirroredFileUpdater.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/MirroredFileUpdater.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/PropertiesDateRemoveFilterStream.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/PropertiesDateRemoveFilterStream.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/PropertiesDateRemoveFilterStream.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/SortedProperties.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/SortedProperties.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/SortedProperties.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/mail/MailSender.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/mail/MailSender.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/mail/MailSender.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/mail/ProjectJavamailMailSender.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/mail/ProjectJavamailMailSender.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/mail/ProjectJavamailMailSender.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/rest/DefaultRestClientConfiguration.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/DefaultRestClientConfiguration.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/rest/DefaultRestClientConfiguration.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/rest/RestClient.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/RestClient.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/rest/RestClient.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/rest/RestClientConfiguration.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/RestClientConfiguration.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/rest/RestClientConfiguration.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/rest/RestDataNotFoundException.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/RestDataNotFoundException.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/rest/RestDataNotFoundException.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/rest/RestException.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/RestException.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/rest/RestException.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/rest/RestRequest.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/RestRequest.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/rest/RestRequest.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/rest/RestRequestBuilder.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/RestRequestBuilder.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/rest/RestRequestBuilder.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/rest/RestSession.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/RestSession.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/rest/RestSession.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/xpp3/AbstractXpp3Reader.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/xpp3/AbstractXpp3Reader.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/xpp3/AbstractXpp3Reader.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/xpp3/DataConverter.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/xpp3/DataConverter.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/xpp3/DataConverter.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/xpp3/DefaultDataConverter.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/xpp3/DefaultDataConverter.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/xpp3/DefaultDataConverter.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/xpp3/PropertyMapper.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/xpp3/PropertyMapper.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/xpp3/PropertyMapper.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Helper.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Helper.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Helper.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Reader.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Reader.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Reader.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
@@ -167,8 +167,8 @@
void setParentRootTagName(String parentRootTagName);
/**
- * @return <code>true</code> if parser will load the default entities,
- * <code>false</code> otherwise.
+ * @return {@code true} if parser will load the default entities,
+ * {@code false} otherwise.
*/
boolean isAddDefaultEntities();
Modified: trunk/src/main/java/org/nuiton/plugin/AbstractPlugin.java
===================================================================
--- trunk/src/main/java/org/nuiton/plugin/AbstractPlugin.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/plugin/AbstractPlugin.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
@@ -72,8 +72,8 @@
* <p/>
* The method {@link #execute()} invoke this method only and only if :
* <ul>
- * <li>{@link #checkPackaging()} returns <code>true</code>.</li>
- * <li>method {@link #init()} returns <code>true</code>.</li>
+ * <li>{@link #checkPackaging()} returns {@code true}.</li>
+ * <li>method {@link #init()} returns {@code true}.</li>
* </ul>
*
* @throws Exception if any
@@ -328,8 +328,8 @@
* Test if a file exists and is newer than the pom file.
*
* @param f the file to test
- * @return <code>true</code> if file exists and is newer than the pom file,
- * <code>false</code> otherwise.
+ * @return {@code true} if file exists and is newer than the pom file,
+ * {@code false} otherwise.
*/
protected boolean isFileNewerThanPomFile(File f) {
File pomFile = getProject().getFile();
Modified: trunk/src/main/java/org/nuiton/plugin/DependencyUtil.java
===================================================================
--- trunk/src/main/java/org/nuiton/plugin/DependencyUtil.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/plugin/DependencyUtil.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/plugin/Plugin.java
===================================================================
--- trunk/src/main/java/org/nuiton/plugin/Plugin.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/plugin/Plugin.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/plugin/PluginHelper.java
===================================================================
--- trunk/src/main/java/org/nuiton/plugin/PluginHelper.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/plugin/PluginHelper.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/plugin/PluginIOContext.java
===================================================================
--- trunk/src/main/java/org/nuiton/plugin/PluginIOContext.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/plugin/PluginIOContext.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/plugin/PluginWithEncoding.java
===================================================================
--- trunk/src/main/java/org/nuiton/plugin/PluginWithEncoding.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/plugin/PluginWithEncoding.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/main/java/org/nuiton/plugin/VelocityTemplateGenerator.java
===================================================================
--- trunk/src/main/java/org/nuiton/plugin/VelocityTemplateGenerator.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/main/java/org/nuiton/plugin/VelocityTemplateGenerator.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/site/apt/Todo.apt
===================================================================
--- trunk/src/site/apt/Todo.apt 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/site/apt/Todo.apt 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
~~ $Id$
~~ $HeadURL$
~~ %%
-~~ Copyright (C) 2009 - 2010 CodeLutin
+~~ Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
~~ %%
~~ This program is free software: you can redistribute it and/or modify
~~ it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/site/apt/index.apt
===================================================================
--- trunk/src/site/apt/index.apt 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/site/apt/index.apt 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
~~ $Id$
~~ $HeadURL$
~~ %%
-~~ Copyright (C) 2009 - 2010 CodeLutin
+~~ Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
~~ %%
~~ This program is free software: you can redistribute it and/or modify
~~ it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/site/apt/mojo-examples.apt
===================================================================
--- trunk/src/site/apt/mojo-examples.apt 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/site/apt/mojo-examples.apt 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
~~ $Id$
~~ $HeadURL$
~~ %%
-~~ Copyright (C) 2009 - 2010 CodeLutin
+~~ Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
~~ %%
~~ This program is free software: you can redistribute it and/or modify
~~ it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/site/apt/mojo-framework.apt
===================================================================
--- trunk/src/site/apt/mojo-framework.apt 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/site/apt/mojo-framework.apt 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
~~ $Id$
~~ $HeadURL$
~~ %%
-~~ Copyright (C) 2009 - 2010 CodeLutin
+~~ Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
~~ %%
~~ This program is free software: you can redistribute it and/or modify
~~ it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/site/apt/mojo-testFramework.apt
===================================================================
--- trunk/src/site/apt/mojo-testFramework.apt 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/site/apt/mojo-testFramework.apt 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
~~ $Id$
~~ $HeadURL$
~~ %%
-~~ Copyright (C) 2009 - 2010 CodeLutin
+~~ Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
~~ %%
~~ This program is free software: you can redistribute it and/or modify
~~ it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/site/apt/mojo-usages.apt
===================================================================
--- trunk/src/site/apt/mojo-usages.apt 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/site/apt/mojo-usages.apt 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
~~ $Id$
~~ $HeadURL$
~~ %%
-~~ Copyright (C) 2009 - 2010 CodeLutin
+~~ Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
~~ %%
~~ This program is free software: you can redistribute it and/or modify
~~ it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/site/site_en.xml
===================================================================
--- trunk/src/site/site_en.xml 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/site/site_en.xml 2010-10-08 10:23:25 UTC (rev 767)
@@ -6,7 +6,7 @@
$Id$
$HeadURL$
%%
- Copyright (C) 2009 - 2010 CodeLutin
+ Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
%%
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/helper/plugin/SendEmailMojoTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/helper/plugin/SendEmailMojoTest.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/helper/plugin/SendEmailMojoTest.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/io/JavaDummy.java
===================================================================
--- trunk/src/test/java/org/nuiton/io/JavaDummy.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/io/JavaDummy.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/io/JavaFileUpdaterTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/io/JavaFileUpdaterTest.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/io/JavaFileUpdaterTest.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/io/JaxxFileUpdaterTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/io/JaxxFileUpdaterTest.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/io/JaxxFileUpdaterTest.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/io/xpp3/Identity.java
===================================================================
--- trunk/src/test/java/org/nuiton/io/xpp3/Identity.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/io/xpp3/Identity.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/io/xpp3/IdentityXpp3Reader.java
===================================================================
--- trunk/src/test/java/org/nuiton/io/xpp3/IdentityXpp3Reader.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/io/xpp3/IdentityXpp3Reader.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/io/xpp3/Xpp3HelperTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/io/xpp3/Xpp3HelperTest.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/io/xpp3/Xpp3HelperTest.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/io/xpp3/Xpp3ReaderTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/io/xpp3/Xpp3ReaderTest.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/io/xpp3/Xpp3ReaderTest.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/plugin/AbstractMojoTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/plugin/AbstractMojoTest.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/plugin/AbstractMojoTest.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/plugin/PluginHelperTest.java
===================================================================
--- trunk/src/test/java/org/nuiton/plugin/PluginHelperTest.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/plugin/PluginHelperTest.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Modified: trunk/src/test/java/org/nuiton/plugin/TestHelper.java
===================================================================
--- trunk/src/test/java/org/nuiton/plugin/TestHelper.java 2010-10-08 09:17:47 UTC (rev 766)
+++ trunk/src/test/java/org/nuiton/plugin/TestHelper.java 2010-10-08 10:23:25 UTC (rev 767)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2009 - 2010 CodeLutin
+ * Copyright (C) 2009 - 2010 Tony Chemit, CodeLutin
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
1
0
Author: tchemit
Date: 2010-10-08 11:17:47 +0200 (Fri, 08 Oct 2010)
New Revision: 766
Url: http://nuiton.org/repositories/revision/maven-helper-plugin/766
Log:
Anomalie #917: Can not specify port in rest api
Modified:
trunk/src/main/java/org/nuiton/io/rest/RestSession.java
Modified: trunk/src/main/java/org/nuiton/io/rest/RestSession.java
===================================================================
--- trunk/src/main/java/org/nuiton/io/rest/RestSession.java 2010-10-03 15:51:40 UTC (rev 765)
+++ trunk/src/main/java/org/nuiton/io/rest/RestSession.java 2010-10-08 09:17:47 UTC (rev 766)
@@ -25,7 +25,14 @@
package org.nuiton.io.rest;
-import org.apache.commons.httpclient.*;
+import org.apache.commons.httpclient.Cookie;
+import org.apache.commons.httpclient.HostConfiguration;
+import org.apache.commons.httpclient.HttpClient;
+import org.apache.commons.httpclient.HttpConnection;
+import org.apache.commons.httpclient.HttpMethod;
+import org.apache.commons.httpclient.HttpState;
+import org.apache.commons.httpclient.HttpStatus;
+import org.apache.commons.httpclient.StatusLine;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.multipart.FilePart;
import org.apache.commons.httpclient.methods.multipart.MultipartRequestEntity;
@@ -74,7 +81,19 @@
this.configuration = configuration;
client = new HttpClient();
HostConfiguration hostConfiguration = new HostConfiguration();
- hostConfiguration.setHost(configuration.getRestUrl().getHost());
+
+ // Anomalie #917: Can not specify port in rest api (tchemit 2010-10-07)
+ int port = configuration.getRestUrl().getPort();
+ if (port == -1) {
+
+ // no port set
+ hostConfiguration.setHost(configuration.getRestUrl().getHost());
+ } else {
+
+ // a specific port is asked
+ hostConfiguration.setHost(configuration.getRestUrl().getHost(), port);
+ }
+
// set encoding (will then encode parameters fine)
client.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET, configuration.getEncoding());
client.setHostConfiguration(hostConfiguration);
1
0
Author: tchemit
Date: 2010-10-03 17:51:40 +0200 (Sun, 03 Oct 2010)
New Revision: 765
Url: http://nuiton.org/repositories/revision/maven-helper-plugin/765
Log:
Update mavenpom4redmineAndCentral to 2.3.
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-09-29 08:10:50 UTC (rev 764)
+++ trunk/pom.xml 2010-10-03 15:51:40 UTC (rev 765)
@@ -33,8 +33,8 @@
<parent>
<groupId>org.nuiton</groupId>
- <artifactId>mavenpom4redmine</artifactId>
- <version>2.2.6</version>
+ <artifactId>mavenpom4redmineAndCentral</artifactId>
+ <version>2.3</version>
</parent>
<artifactId>maven-helper-plugin</artifactId>
@@ -326,14 +326,6 @@
<!-- documentation is in apt -->
<siteSourcesType>apt</siteSourcesType>
- <!-- release config -->
-
- <!-- activate this profile while doing release:prepare -->
- <arguments>-DperformRelease -Pcentral-safe</arguments>
-
- <!-- activate this profile while doing release:perform -->
- <releaseProfiles>central-safe</releaseProfiles>
-
</properties>
<build>
1
0