|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Copyright 2016 Carlos Ballesteros Velasco |
| 4 | + ~ |
| 5 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + ~ you may not use this file except in compliance with the License. |
| 7 | + ~ You may obtain a copy of the License at |
| 8 | + ~ |
| 9 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + ~ |
| 11 | + ~ Unless required by applicable law or agreed to in writing, software |
| 12 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + ~ See the License for the specific language governing permissions and |
| 15 | + ~ limitations under the License. |
| 16 | + --> |
| 17 | + |
| 18 | +<project |
| 19 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 20 | + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 21 | + |
| 22 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + |
| 24 | + <parent> |
| 25 | + <groupId>com.jtransc</groupId> |
| 26 | + <artifactId>jtransc</artifactId> |
| 27 | + <version>0.2.0</version> |
| 28 | + <relativePath>../pom.xml</relativePath> |
| 29 | + </parent> |
| 30 | + |
| 31 | + <artifactId>jtransc-core</artifactId> |
| 32 | + <name>jtransc core</name> |
| 33 | + |
| 34 | + <dependencies> |
| 35 | + <dependency> |
| 36 | + <groupId>org.jetbrains.kotlin</groupId> |
| 37 | + <artifactId>kotlin-stdlib</artifactId> |
| 38 | + <version>${kotlin.version}</version> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>org.jetbrains.kotlin</groupId> |
| 43 | + <artifactId>kotlin-runtime</artifactId> |
| 44 | + <version>${kotlin.version}</version> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <dependency> |
| 48 | + <groupId>org.jetbrains.kotlin</groupId> |
| 49 | + <artifactId>kotlin-reflect</artifactId> |
| 50 | + <version>${kotlin.version}</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.jtransc</groupId> |
| 54 | + <artifactId>jtransc-utils</artifactId> |
| 55 | + <version>${jtransc.version}</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.ow2.asm</groupId> |
| 59 | + <artifactId>asm-all</artifactId> |
| 60 | + <version>5.0.4</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>com.jtransc</groupId> |
| 64 | + <artifactId>jtransc-rt-core</artifactId> |
| 65 | + <version>${jtransc.version}</version> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>com.jtransc</groupId> |
| 69 | + <artifactId>jtransc-rt</artifactId> |
| 70 | + <version>${jtransc.version}</version> |
| 71 | + <scope>provided</scope> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>com.jtransc</groupId> |
| 75 | + <artifactId>jtransc-rt-core</artifactId> |
| 76 | + <version>${jtransc.version}</version> |
| 77 | + </dependency> |
| 78 | + </dependencies> |
| 79 | + |
| 80 | + <build> |
| 81 | + <sourceDirectory>src</sourceDirectory> |
| 82 | + <testSourceDirectory>test</testSourceDirectory> |
| 83 | + <resources> |
| 84 | + <resource> |
| 85 | + <directory>resources</directory> |
| 86 | + </resource> |
| 87 | + </resources> |
| 88 | + <testResources> |
| 89 | + <testResource> |
| 90 | + <directory>testresources</directory> |
| 91 | + </testResource> |
| 92 | + </testResources> |
| 93 | + <plugins> |
| 94 | + <plugin> |
| 95 | + <artifactId>maven-assembly-plugin</artifactId> |
| 96 | + <configuration> |
| 97 | + <archive> |
| 98 | + <manifest> |
| 99 | + <mainClass>jtransc.MainKt</mainClass> |
| 100 | + </manifest> |
| 101 | + </archive> |
| 102 | + <descriptorRefs> |
| 103 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 104 | + </descriptorRefs> |
| 105 | + </configuration> |
| 106 | + </plugin> |
| 107 | + </plugins> |
| 108 | + </build> |
| 109 | + |
| 110 | +</project> |
0 commit comments