Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Dudaev2019-03-05 12:00:31 +0000
committerAlexander Dudaev2019-03-06 07:37:00 +0000
commit8467cefe799aebcaa35c5cc807a812edd456e754 (patch)
tree18fd883667ff7b448755a040c3aaf14edfa97eb8
parente0206144001df46909c2fef961486d31e6a3a606 (diff)
downloadorg.eclipse.rcptt-8467cefe799aebcaa35c5cc807a812edd456e754.tar.gz
org.eclipse.rcptt-8467cefe799aebcaa35c5cc807a812edd456e754.tar.xz
org.eclipse.rcptt-8467cefe799aebcaa35c5cc807a812edd456e754.zip
Fix parameters in maven-plugin
Change-Id: I19ac03db616876509dbcb1b4d8b97e41df5e39ff Signed-off-by: Alexander Dudaev <aleksandr.dudayev@xored.com>
-rw-r--r--maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/AbstractRCPTTMojo.java2
-rw-r--r--maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/PrepareMojo.java6
-rw-r--r--rcpttTests/pom-base.xml2
3 files changed, 5 insertions, 5 deletions
diff --git a/maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/AbstractRCPTTMojo.java b/maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/AbstractRCPTTMojo.java
index c1b66e3d9..cd262c49f 100644
--- a/maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/AbstractRCPTTMojo.java
+++ b/maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/AbstractRCPTTMojo.java
@@ -493,7 +493,7 @@ public abstract class AbstractRCPTTMojo extends AbstractMojo {
/**
* The current repository/network configuration of Maven.
*
- * @parameter default-value="repositorySystemSession"
+ * @parameter default-value="${repositorySystemSession}"
* @readonly
*/
private RepositorySystemSession repoSession;
diff --git a/maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/PrepareMojo.java b/maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/PrepareMojo.java
index 5c89365aa..e1f3b05dd 100644
--- a/maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/PrepareMojo.java
+++ b/maven-plugin/rcptt-maven-plugin/src/main/java/org/eclipse/rcptt/maven/PrepareMojo.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2019 Xored Software Inc and others.
+ * Copyright (c) 2009, 2016 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -163,7 +163,7 @@ public class PrepareMojo extends AbstractRCPTTMojo {
/**
* Remote repositories of current plugin, used to resolve q7 runner
*
- * @parameter default-value="project.remotePluginRepositories"
+ * @parameter default-value="${project.remotePluginRepositories}"
* @readonly
*/
private List<RemoteRepository> remotePluginRepos;
@@ -171,7 +171,7 @@ public class PrepareMojo extends AbstractRCPTTMojo {
/**
* Remote repositories of project we are building, used to resolve aut
*
- * @parameter default-value="project.remoteProjectRepositories"
+ * @parameter default-value="${project.remoteProjectRepositories}"
* @readonly
*/
private List<RemoteRepository> remoteProjectRepos;
diff --git a/rcpttTests/pom-base.xml b/rcpttTests/pom-base.xml
index 0fd1294c0..f65e5e8e2 100644
--- a/rcpttTests/pom-base.xml
+++ b/rcpttTests/pom-base.xml
@@ -35,7 +35,7 @@
<properties>
<rcptt-maven-group>org.eclipse.rcptt</rcptt-maven-group>
- <rcptt-maven-version>2.4.0-SNAPSHOT</rcptt-maven-version>
+ <rcptt-maven-version>2.3.0</rcptt-maven-version>
<rcptt-maven-plugin>rcptt-maven-plugin</rcptt-maven-plugin>
<runner-version>2.4.0-SNAPSHOT</runner-version>
<autRepository>file://${basedir}/../modules/repository/target/repository</autRepository>

Back to the top