juel-impl-2.2.7.pom 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.7</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.7</version>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-jar-plugin</artifactId>
  20. <version>2.4</version>
  21. <configuration>
  22. <archive>
  23. <addMavenDescriptor>false</addMavenDescriptor>
  24. <manifestEntries>
  25. <Specification-Title>Expression Language</Specification-Title>
  26. <Specification-Version>2.2</Specification-Version>
  27. <Specification-Vendor>Sun Microsystems Inc.</Specification-Vendor>
  28. <Implementation-Title>JUEL</Implementation-Title>
  29. <Implementation-Version>${project.version}</Implementation-Version>
  30. <Implementation-Vendor>Odysseus Software GmbH</Implementation-Vendor>
  31. <Implementation-Vendor-Id>de.odysseus</Implementation-Vendor-Id>
  32. <Main-Class>de.odysseus.el.tree.impl.Builder</Main-Class>
  33. <Import-Package>javax.el</Import-Package>
  34. <Export-Package>de.odysseus.el,de.odysseus.el.util</Export-Package>
  35. <Bundle-Vendor>Odysseus.de</Bundle-Vendor>
  36. <Bundle-Version>${project.version}</Bundle-Version>
  37. <Bundle-Name>Expression Language Implementation</Bundle-Name>
  38. <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
  39. <Bundle-SymbolicName>de.odysseus.juel-impl</Bundle-SymbolicName>
  40. <Service-Component>OSGI-INF/services.xml</Service-Component>
  41. </manifestEntries>
  42. </archive>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. <dependencies>
  48. <dependency>
  49. <groupId>${project.groupId}</groupId>
  50. <artifactId>juel-api</artifactId>
  51. <version>${project.version}</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. </dependencies>
  55. </project>