| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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>
- <groupId>de.odysseus.juel</groupId>
- <artifactId>juel-parent</artifactId>
- <version>2.2.4</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
- <groupId>de.odysseus.juel</groupId>
- <artifactId>juel-impl</artifactId>
- <packaging>jar</packaging>
- <name>Java Unified Expression Language Implementation</name>
- <version>2.2.4</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <addMavenDescriptor>false</addMavenDescriptor>
- <manifestEntries>
- <Specification-Title>Expression Language</Specification-Title>
- <Specification-Version>2.2</Specification-Version>
- <Specification-Vendor>Sun Microsystems Inc.</Specification-Vendor>
- <Implementation-Title>JUEL</Implementation-Title>
- <Implementation-Version>${project.version}</Implementation-Version>
- <Implementation-Vendor>Odysseus Software GmbH</Implementation-Vendor>
- <Implementation-Vendor-Id>de.odysseus</Implementation-Vendor-Id>
- <Main-Class>de.odysseus.el.tree.impl.Builder</Main-Class>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>juel-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </project>
|