juel-parent-2.2.7.pom 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.sonatype.oss</groupId>
  5. <artifactId>oss-parent</artifactId>
  6. <version>7</version>
  7. </parent>
  8. <groupId>de.odysseus.juel</groupId>
  9. <artifactId>juel-parent</artifactId>
  10. <packaging>pom</packaging>
  11. <name>Java Unified Expression Language</name>
  12. <version>2.2.7</version>
  13. <description>
  14. Implementation of the Java Unified Expression Language as specified
  15. by the Expression Language Specification, Version 2.1 (JEE5, part of
  16. the JSP 2.1 standard [JSR-245]), plus maintenance release 2.2 (JEE6).
  17. </description>
  18. <url>http://juel.sourceforge.net/</url>
  19. <inceptionYear>2006</inceptionYear>
  20. <licenses>
  21. <license>
  22. <name>The Apache Software License, Version 2.0</name>
  23. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  24. <distribution>repo</distribution>
  25. </license>
  26. </licenses>
  27. <organization>
  28. <name>Odysseus Software GmbH</name>
  29. <url>http://www.odysseus.de/</url>
  30. </organization>
  31. <developers>
  32. <developer>
  33. <name>Christoph Beck</name>
  34. <organization>Odysseus Software GmbH</organization>
  35. <organizationUrl>http://www.odysseus.de/</organizationUrl>
  36. <roles>
  37. <role>developer</role>
  38. </roles>
  39. </developer>
  40. </developers>
  41. <scm>
  42. <connection>scm:git:https://github.com/beckchr/juel.git</connection>
  43. <developerConnection>scm:git:git@github.com:beckchr/juel.git</developerConnection>
  44. <url>https://github.com/beckchr/juel</url>
  45. </scm>
  46. <properties>
  47. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  48. </properties>
  49. <dependencies>
  50. <dependency>
  51. <groupId>junit</groupId>
  52. <artifactId>junit</artifactId>
  53. <version>3.8.1</version>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. <version>2.5.1</version>
  63. <configuration>
  64. <source>1.5</source>
  65. <target>1.5</target>
  66. <optimize>true</optimize>
  67. </configuration>
  68. </plugin>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-source-plugin</artifactId>
  72. <version>2.1.2</version>
  73. <configuration>
  74. <excludeResources>true</excludeResources>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. <reporting>
  80. <plugins>
  81. <plugin>
  82. <!-- mvn javadoc:jar -->
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-javadoc-plugin</artifactId>
  85. <version>2.7</version>
  86. <configuration>
  87. <bottom>Copyright &amp;copy; {inceptionYear}-{currentYear} {organizationName}.</bottom>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </reporting>
  92. <modules>
  93. <module>modules/api</module>
  94. <module>modules/impl</module>
  95. <module>modules/spi</module>
  96. </modules>
  97. </project>