m2 assemblies have no way of getting rars/jars that aren't car dependencies
into the g repo
-------------------------------------------------------------------------------------------
Key: GERONIMO-2338
URL: http://issues.apache.org/jira/browse/GERONIMO-2338
Project: Geronimo
Issue Type: Bug
Security Level: public (Regular issues)
Components: buildsystem
Affects Versions: 1.2
Reporter: David Jencks
Assigned To: Jason Dillon
Fix For: 1.2
The m1 assembly plugin had a way to get "convenience" artifacts into the g repo
by adding a tag in project.xml. We need an equivalent in the m2 assembly. I
think we can put these in the minimal boilerplate module since all our
assemblies should include these. Here are the artifacts that need to be
included:
<dependency>
<!-- included to make additional deployments easier -->
<groupId>geronimo</groupId>
<artifactId>ge-activemq-rar</artifactId>
<version>${pom.currentVersion}</version>
<type>rar</type>
<properties>
<geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
<dependency>
<groupId>tranql</groupId>
<artifactId>tranql-connector</artifactId>
<version>${tranql_connector_version}</version>
<type>rar</type>
<properties>
<geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
<dependency>
<groupId>tranql</groupId>
<artifactId>tranql-connector-derby-embed-local</artifactId>
<version>${tranql_vendors_version}</version>
<type>rar</type>
<properties>
<geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
<dependency>
<groupId>tranql</groupId>
<artifactId>tranql-connector-derby-embed-xa</artifactId>
<version>${tranql_vendors_version}</version>
<type>rar</type>
<properties>
<geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
<dependency>
<groupId>tranql</groupId>
<artifactId>tranql-connector-derby-client-local</artifactId>
<version>${tranql_vendors_version}</version>
<type>rar</type>
<properties>
<geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
<dependency>
<groupId>tranql</groupId>
<artifactId>tranql-connector-derby-client-xa</artifactId>
<version>${tranql_vendors_version}</version>
<type>rar</type>
<properties>
<geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
<version>${derby_version}</version>
<properties>
<geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbytools</artifactId>
<version>${derby_version}</version>
<properties>
<geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira