[Design of Messaging on JBoss (Messaging/JBoss)] - Re: Noise at undeployment
by clebert.suconic@jboss.com
anonymous wrote : Yes please. It took me two hours including disassembling the jar in my local
| repository before I figured this out.
|
| If we are going to use version control then let's do it properly otherwise it is pointless.
Sorry again... It was my understanding that if I retaged, the maven repo would pick this up, and as we hadn't officially released CR1 I thought the re-upload would be appropriate.
anonymous wrote : P.S. Why isn't this default config visible in the -persistence-service.xml for easy override?
| It was while I was researching how to do this (by reading the source), that
| I realised the source didn't match the object.
We do this for all the databases but HSQLDB. On HSQLDB we just pick the default config specified on the source code. But we can consider also exposing the SQL Statement on next release.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4144484#4144484
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4144484
16 years, 7 months
[Design the new POJO MicroContainer] - Re: Programmatic policy for jar handling
by alesj
When I'm swapping the root with unpacked on top level, must I also change the root in VFSDeployment?
AbstractStructureBuilder.class
| public DeploymentContext populateContext(Deployment deployment, StructureMetaData metaData) throws DeploymentException
| {
| if (deployment == null)
| throw new IllegalArgumentException("Null deployment");
| if (metaData == null)
| throw new IllegalArgumentException("Null metaData");
|
| boolean trace = log.isTraceEnabled();
| if (trace)
| log.trace("Populating deployment " + deployment.getName() + " metaData=" + metaData);
|
| DeploymentContext result;
| try
| {
| result = createRootDeploymentContext(deployment);
| if (result == null)
| throw new IllegalStateException("Root deployment context is null");
| result.setDeployment(deployment);
|
| ContextInfo contextInfo = metaData.getContext("");
| if (contextInfo == null)
| contextInfo = StructureMetaDataFactory.createContextInfo("", null);
|
| // APPLY THE ContextInfo.isUnpack() check here
| // implementing it in VSFStructureBuilder
|
| contextInfo.setPredeterminedManagedObjects(deployment.getPredeterminedManagedObjects());
| applyContextInfo(result, contextInfo);
| }
| catch (Throwable t)
| {
| throw DeploymentException.rethrowAsDeploymentException("Error populating deployment " + deployment.getName(), t);
| }
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4144469#4144469
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4144469
16 years, 7 months
[Design of JBoss Build System] - Remapping transitive dependencies
by wolfc
jnpserver has a dependency on jboss:jboss-common-core, while others have a dependency on org.jboss:jboss-common-core. Is there a way to remap this?
[INFO] [dependency:tree]
| [INFO] org.jboss.ejb3:jboss-ejb3-transactions:jar:0.13.0-SNAPSHOT
| [INFO] +- junit:junit:jar:4.4:test
| [INFO] +- jboss.aop:jboss-aop-deployer-jdk50:jar:2.0.0.CR8:test
| [INFO] +- org.jboss:jnpserver:jar:5.0.0.Beta4:test
| [INFO] | +- apache-log4j:log4j:jar:1.2.14:test
| [INFO] | +- jboss:jboss-common-core:jar:2.0.2.GA:test
| ...
| [INFO] +- org.jboss:jboss-transaction-spi:jar:5.0.0.Beta4:compile
| [INFO] | +- jboss:jboss-common-logging-spi:jar:2.0.4.GA:compile
| [INFO] | +- org.jboss.javaee:jboss-jca-api:jar:1.5.0.Beta3Update1:compile (version managed from 1.5.0.20070913080910)
| [INFO] | | \- (org.jboss:jboss-common-core:jar:2.2.5.GA:compile - version managed from 2.2.2.GA; omitted for duplicate)
| ...
So I would like to specify that jboss:jboss-common-core is interpreted as org.jboss:jboss-common-core.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4144451#4144451
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4144451
16 years, 7 months