pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <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/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <groupId>org.apache.livy</groupId>
  21. <artifactId>livy-core_2.12</artifactId>
  22. <version>0.8.0-incubating-SNAPSHOT</version>
  23. <packaging>jar</packaging>
  24. <parent>
  25. <groupId>org.apache.livy</groupId>
  26. <artifactId>livy-core-parent</artifactId>
  27. <version>0.8.0-incubating-SNAPSHOT</version>
  28. <relativePath>../pom.xml</relativePath>
  29. </parent>
  30. <properties>
  31. <scala.version>${scala-2.12.version}</scala.version>
  32. <scala.binary.version>2.12</scala.binary.version>
  33. </properties>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-jar-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>test-jar</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>