configuration-manager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.weblab.tools</groupId>
<artifactId>configuration-manager</artifactId>
<version>1.0-RC1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <!-- Parent of weblab-portlet is not portlet parent but service parent, since weblab-portlet has to be added inside portlet parent --> <groupId>org.ow2.weblab.webservices</groupId> <artifactId>parent</artifactId> <version>1.2.2</version> </parent> <groupId>org.ow2.weblab.tools</groupId> <artifactId>configuration-manager</artifactId> <version>1.0-RC1</version> <packaging>jar</packaging> <name>WebLab Configuration Manager</name> <description> This is a library that provide a common configuration mechanism to add, remove, replace and request beans. And it also provide a simple way to manage WebLab services configuration and retrieval. </description> <dependencies> <dependency> <groupId>org.ow2.weblab.services</groupId> <artifactId>dataoperator</artifactId> <version>1.2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ow2.weblab.core</groupId> <artifactId>model</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.ow2.weblab.core</groupId> <artifactId>extended</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> </dependencies> </project>