cel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.opensuit</groupId>
<artifactId>cel</artifactId>
<version>1.0.1</version>
</dependency><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> <artifactId>opensuit-parent</artifactId> <groupId>org.ow2.opensuit</groupId> <version>4</version> </parent> <!-- ============== --> <!-- Identification --> <!-- ============== --> <name>CEL</name> <artifactId>cel</artifactId> <groupId>org.ow2.opensuit</groupId> <version>1.0.1</version> <description>Compiled Expression Language</description> <packaging>jar</packaging> <!-- Source code management --> <scm> <connection>scm:svn:svn+ssh://svn.forge.objectweb.org/svnroot/opensuit/tags/cel-1.0.1</connection> <developerConnection>scm:svn:svn+ssh://psmeyers@svn.forge.objectweb.org/svnroot/opensuit/tags/cel-1.0.1</developerConnection> </scm> <!-- ========== --> <!-- Properties --> <!-- ========== --> <properties> <topDirectoryLocation>..</topDirectoryLocation> </properties> <!-- ============ --> <!-- Dependencies --> <!-- ============ --> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.js</include> <include>**/*.res</include> </includes> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> </build> </project>