create changes.txt while releasing

2010-06-08 Thread rgubler2

Hello,

can maven create a changes file from svn log messages between releases?



Yours Rüdiger
-- 
View this message in context: 
http://old.nabble.com/create-changes.txt-while-releasing-tp28815672p28815672.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: create changes.txt while releasing

2010-06-08 Thread rgubler2

Hi,

unfortunately no. This plugin needs the tags to be configured manually. 
The http://maven.apache.org/plugins/maven-changes-plugin/ can do the job
from 
JIRA or trac but we want to use it with svn. 

Yours Rüdiger




Marshall Schor wrote:
 
 Hi,
 
 See if the http://maven.apache.org/plugins/maven-changelog-plugin/ does
 what you want.
 
 -Marshall Schor
 
 On 6/8/2010 5:34 AM, rgubler2 wrote:
 Hello,

 can maven create a changes file from svn log messages between releases?



 Yours Rüdiger
   
 
 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org
 
 
 

-- 
View this message in context: 
http://old.nabble.com/create-changes.txt-while-releasing-tp28815672p28816600.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



How to use repo2.maven.org in artifactory

2010-02-04 Thread rgubler2

Hi, 

I added a new remote repository to our artifactory. 
I named it repo2 and use the URL http://repo2.maven.org/maven2/. 
In the repository browser the repo2 appears with 0 artifacts. 
The online status indicate online. 

Whats going wrong that we can't access repo2 data? 


Yours Ruediger 

-- 
View this message in context: 
http://old.nabble.com/How-to-use-repo2.maven.org-in-artifactory-tp27452208p27452208.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: How to use repo2.maven.org in artifactory

2010-02-04 Thread rgubler2




dahoffer wrote:
 
 Could it be that it only shows you proxied/cached artifacts?  I suspect
 that
 if you start downloading artifacts from that repo they will show here.
 
 -Dave
 
 

Yes it acts only as a proxy. We got this problem yesterday, but now the
artifacts are reachable. 
It look like there must be a time period after adding a new remote
repository or there are some 
network problems yesterday. 


Yours Rüdiger

-- 
View this message in context: 
http://old.nabble.com/How-to-use-repo2.maven.org-in-artifactory-tp27452208p27454145.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[Maven Assembly Plugin] Deploy assembly

2009-11-13 Thread rgubler2

Hello,

we have the following pom:

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;
  modelVersion4.0.0/modelVersion
  groupIdgisdistribution/groupId
  artifactIdgisdistribution/artifactId
  namegisdistribution/name
  version0.0.2/version
  descriptiondistribution archive of the mirgis/description
  packagingpom/packaging
  
  parent
groupIdmirgis/groupId
artifactIdmirgis/artifactId
version1.11/version
  /parent

  build
plugins
  plugin  
artifactIdmaven-assembly-plugin/artifactId
  configuration
descriptors
  descriptorsrc/main/assembly/distribution.xml/descriptor
/descriptors
  /configuration
  
  executions
execution
  idmake-assembly/id
  phasepackage/phase
  goals
goalassembly/goal
  /goals
/execution
  /executions
  
/plugin
/plugins
  /build
  
  dependencies
dependency
  groupIdgiskernel/groupId
  artifactIdgiskernel/artifactId
  version0.0.4/version
/dependency
  /dependencies
  
  scm

  /scm
  
/project

And the following distribution.xml:
?xml version='1.0' encoding='UTF-8'?
assembly 
  idassembly/id
  formats
formatzip/format
  /formats

  dependencySets
dependencySet
  outputDirectorylib/outputDirectory
  useProjectArtifacttrue/useProjectArtifact
/dependencySet
  /dependencySets

/assembly


Maven now creates the gisdistribution-0.0.2-assembly.zip but it doesn't
deploy it. 
We tried to use packaging jar but only empty jars are deployed. 

In which way can we deploy the assembly?


Yours Rüdiger
 


-- 
View this message in context: 
http://old.nabble.com/-Maven-Assembly-Plugin--Deploy-assembly-tp26333720p26333720.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: [Maven Assembly Plugin] Deploy assembly

2009-11-13 Thread rgubler2



Anders Hammar wrote:
 
 A quick Internet search gives the answer:
 http://old.nabble.com/Maven-assembly-plug-in-and-deploy-not-happening--td18161292.html
 
 /Anders
 
 

Hmm,

I changed 

   execution
  idmake-assembly/id
  phasepackage/phase
  goals
goalassembly/goal
  /goals
/execution

to

   execution
  idmake-assembly/id
  phasepackage/phase
  goals
goalattach/goal
  /goals
/execution


and get now the following error:

  'attach' was specified in an execution, but not found in the plugin


What's wrong?


Yours Rüdiger

-- 
View this message in context: 
http://old.nabble.com/-Maven-Assembly-Plugin--Deploy-assembly-tp26333720p26333970.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org