|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +Copyright (c) 2023, 2023, Oracle and/or its affiliates. All rights reserved. |
| 4 | +DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 5 | +
|
| 6 | +The Universal Permissive License (UPL), Version 1.0 |
| 7 | +
|
| 8 | +Subject to the condition set forth below, permission is hereby granted to any |
| 9 | +person obtaining a copy of this software, associated documentation and/or |
| 10 | +data (collectively the "Software"), free of charge and under any and all |
| 11 | +copyright rights in the Software, and any and all patent rights owned or |
| 12 | +freely licensable by each licensor hereunder covering either (i) the |
| 13 | +unmodified Software as contributed to or provided by such licensor, or (ii) |
| 14 | +the Larger Works (as defined below), to deal in both |
| 15 | +
|
| 16 | +(a) the Software, and |
| 17 | +
|
| 18 | +(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if |
| 19 | +one is included with the Software each a "Larger Work" to which the Software |
| 20 | +is contributed by such licensors), |
| 21 | +
|
| 22 | +without restriction, including without limitation the rights to copy, create |
| 23 | +derivative works of, display, perform, and distribute the Software and make, |
| 24 | +use, sell, offer for sale, import, export, have made, and have sold the |
| 25 | +Software and the Larger Work(s), and to sublicense the foregoing rights on |
| 26 | +either these or other terms. |
| 27 | +
|
| 28 | +This license is subject to the following condition: |
| 29 | +
|
| 30 | +The above copyright notice and either this complete permission notice or at a |
| 31 | +minimum a reference to the UPL must be included in all copies or substantial |
| 32 | +portions of the Software. |
| 33 | +
|
| 34 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 35 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 36 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 37 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 38 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 39 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 40 | +SOFTWARE. |
| 41 | +--> |
| 42 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 43 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 44 | + |
| 45 | + <modelVersion>4.0.0</modelVersion> |
| 46 | + |
| 47 | + <groupId>org.graalvm.python</groupId> |
| 48 | + <artifactId>graalpy-gradle-plugin</artifactId> |
| 49 | + <packaging>jar</packaging> |
| 50 | + <!-- This version is always overridden when deploying using mx --> |
| 51 | + <version>24.2.0</version> |
| 52 | + <url>http://www.graalvm.org/</url> |
| 53 | + <name>graalpy-gradle-plugin</name> |
| 54 | + <description>Handles python related resources in a gradle GraalPy - Java application.</description> |
| 55 | + |
| 56 | + <properties> |
| 57 | + <maven.compiler.target>17</maven.compiler.target> |
| 58 | + <maven.compiler.source>17</maven.compiler.source> |
| 59 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 60 | + <graalpy.version>24.2.0</graalpy.version> |
| 61 | + <gradle.version>6.1.1</gradle.version> |
| 62 | + </properties> |
| 63 | + |
| 64 | + <profiles> |
| 65 | + <profile> |
| 66 | + <id>Version from suite</id> |
| 67 | + <activation> |
| 68 | + <property> |
| 69 | + <name>env.GRAALPY_VERSION</name> |
| 70 | + </property> |
| 71 | + </activation> |
| 72 | + <properties> |
| 73 | + <graalpy.version>${env.GRAALPY_VERSION}</graalpy.version> |
| 74 | + </properties> |
| 75 | + </profile> |
| 76 | + </profiles> |
| 77 | + |
| 78 | + |
| 79 | + <dependencies> |
| 80 | + <dependency> |
| 81 | + <groupId>org.codehaus.groovy</groupId> |
| 82 | + <artifactId>groovy</artifactId> |
| 83 | + <version>3.0.22</version> |
| 84 | + <scope>provided</scope> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>org.gradle</groupId> |
| 88 | + <artifactId>gradle-tooling-api</artifactId> |
| 89 | + <version>8.8</version> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>org.gradle</groupId> |
| 93 | + <artifactId>gradle-core</artifactId> |
| 94 | + <scope>provided</scope> |
| 95 | + <version>${gradle.version}</version> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>org.gradle</groupId> |
| 99 | + <artifactId>gradle-core-api</artifactId> |
| 100 | + <scope>provided</scope> |
| 101 | + <version>${gradle.version}</version> |
| 102 | + </dependency> |
| 103 | + <dependency> |
| 104 | + <groupId>org.gradle</groupId> |
| 105 | + <artifactId>gradle-model-core</artifactId> |
| 106 | + <scope>provided</scope> |
| 107 | + <version>${gradle.version}</version> |
| 108 | + </dependency> |
| 109 | + <dependency> |
| 110 | + <groupId>org.gradle</groupId> |
| 111 | + <artifactId>gradle-language-java</artifactId> |
| 112 | + <scope>provided</scope> |
| 113 | + <version>${gradle.version}</version> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>org.gradle</groupId> |
| 117 | + <artifactId>gradle-language-jvm</artifactId> |
| 118 | + <scope>provided</scope> |
| 119 | + <version>${gradle.version}</version> |
| 120 | + </dependency> |
| 121 | + <dependency> |
| 122 | + <groupId>org.gradle</groupId> |
| 123 | + <artifactId>gradle-platform-jvm</artifactId> |
| 124 | + <scope>provided</scope> |
| 125 | + <version>${gradle.version}</version> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>org.gradle</groupId> |
| 129 | + <artifactId>gradle-base-services</artifactId> |
| 130 | + <version>${gradle.version}</version> |
| 131 | + <scope>provided</scope> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>org.gradle</groupId> |
| 135 | + <artifactId>gradle-plugins</artifactId> |
| 136 | + <scope>provided</scope> |
| 137 | + <version>${gradle.version}</version> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>org.gradle</groupId> |
| 141 | + <artifactId>gradle-logging</artifactId> |
| 142 | + <version>${gradle.version}</version> |
| 143 | + <scope>provided</scope> |
| 144 | + </dependency> |
| 145 | + |
| 146 | + <dependency> |
| 147 | + <groupId>org.graalvm.python</groupId> |
| 148 | + <artifactId>python-embedding-tools</artifactId> |
| 149 | + <version>${graalpy.version}</version> |
| 150 | + <scope>compile</scope> |
| 151 | + </dependency> |
| 152 | + <dependency> |
| 153 | + <groupId>org.graalvm.python</groupId> |
| 154 | + <artifactId>python-launcher</artifactId> |
| 155 | + <version>${graalpy.version}</version> |
| 156 | + <scope>runtime</scope> |
| 157 | + </dependency> |
| 158 | + </dependencies> |
| 159 | + |
| 160 | + <repositories> |
| 161 | + <repository> |
| 162 | + <id>maven</id> |
| 163 | + <url>https://repo1.maven.org/maven2/</url> |
| 164 | + </repository> |
| 165 | + <repository> |
| 166 | + <id>gradle</id> |
| 167 | + <url>https://repo.gradle.org/gradle/libs-releases/</url> |
| 168 | + <releases> |
| 169 | + <enabled>true</enabled> |
| 170 | + </releases> |
| 171 | + <snapshots> |
| 172 | + <enabled>false</enabled> |
| 173 | + </snapshots> |
| 174 | + </repository> |
| 175 | + <repository> |
| 176 | + <id>gradle-local</id> |
| 177 | + <url>https://repo.gradle.org/gradle/libs-releases-local/</url> |
| 178 | + <releases> |
| 179 | + <enabled>true</enabled> |
| 180 | + </releases> |
| 181 | + <snapshots> |
| 182 | + <enabled>false</enabled> |
| 183 | + </snapshots> |
| 184 | + </repository> |
| 185 | + </repositories> |
| 186 | + |
| 187 | + |
| 188 | +</project> |
0 commit comments