juel-impl-2.2.4.pom 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>de.odysseus.juel</groupId>
  6. <artifactId>juel-parent</artifactId>
  7. <version>2.2.4</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <groupId>de.odysseus.juel</groupId>
  11. <artifactId>juel-impl</artifactId>
  12. <packaging>jar</packaging>
  13. <name>Java Unified Expression Language Implementation</name>
  14. <version>2.2.4</version>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-jar-plugin</artifactId>
  20. <configuration>
  21. <archive>
  22. <addMavenDescriptor>false</addMavenDescriptor>
  23. <manifestEntries>
  24. <Specification-Title>Expression Language</Specification-Title>
  25. <Specification-Version>2.2</Specification-Version>
  26. <Specification-Vendor>Sun Microsystems Inc.</Specification-Vendor>
  27. <Implementation-Title>JUEL</Implementation-Title>
  28. <Implementation-Version>${project.version}</Implementation-Version>
  29. <Implementation-Vendor>Odysseus Software GmbH</Implementation-Vendor>
  30. <Implementation-Vendor-Id>de.odysseus</Implementation-Vendor-Id>
  31. <Main-Class>de.odysseus.el.tree.impl.Builder</Main-Class>
  32. </manifestEntries>
  33. </archive>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <dependencies>
  39. <dependency>
  40. <groupId>${project.groupId}</groupId>
  41. <artifactId>juel-api</artifactId>
  42. <version>${project.version}</version>
  43. </dependency>
  44. </dependencies>
  45. </project>