|
| 1 | +<!-- ~ Licensed to the Apache Software Foundation (ASF) under one ~ or more |
| 2 | + contributor license agreements. See the NOTICE file ~ distributed with this |
| 3 | + work for additional information ~ regarding copyright ownership. The ASF |
| 4 | + licenses this file ~ to you under the Apache License, Version 2.0 (the ~ |
| 5 | + "License"); you may not use this file except in compliance ~ with the License. |
| 6 | + You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | + ~ ~ Unless required by applicable law or agreed to in writing, ~ software |
| 8 | + distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT |
| 9 | + WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the |
| 10 | + License for the ~ specific language governing permissions and limitations |
| 11 | + ~ under the License. --> |
| 12 | + |
| 13 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 14 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 15 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 16 | + <modelVersion>4.0.0</modelVersion> |
| 17 | + <groupId>modulec</groupId> |
| 18 | + <artifactId>modulec</artifactId> |
| 19 | + <version>1.0.0-SNAPSHOT</version> |
| 20 | + |
| 21 | + <build> |
| 22 | + <plugins> |
| 23 | + <plugin> |
| 24 | + <artifactId>maven-compiler-plugin</artifactId> |
| 25 | + <version>3.8.0</version> |
| 26 | + <configuration> |
| 27 | + <release>9</release> |
| 28 | + </configuration> |
| 29 | + </plugin> |
| 30 | + </plugins> |
| 31 | + </build> |
| 32 | + |
| 33 | + <dependencies> |
| 34 | + <dependency> |
| 35 | + <groupId>modulea</groupId> |
| 36 | + <artifactId>modulea</artifactId> |
| 37 | + <version>1.0.0-SNAPSHOT</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>moduleb</groupId> |
| 41 | + <artifactId>moduleb</artifactId> |
| 42 | + <version>1.0.0-SNAPSHOT</version> |
| 43 | + <optional>true</optional> |
| 44 | + </dependency> |
| 45 | + </dependencies> |
| 46 | +</project> |
0 commit comments