flytekit-bom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-bom</artifactId> <version>0.4.62</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2023 Flyte Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <modelVersion>4.0.0</modelVersion> <groupId>org.flyte</groupId> <artifactId>flytekit-bom</artifactId> <version>0.4.62</version> <packaging>pom</packaging> <name>Flytekit - Bill of Materials</name> <description>Flytekit Java is the Java/Scala SDK built on top of Flyte.</description> <url>https://github.com/flyteorg/flytekit-java</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>flytekit</name> <email>admin@flyte.org</email> <organization>Flyte</organization> <organizationUrl>https://flyte.org</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/flyteorg/flytekit-java.git</connection> <developerConnection>scm:git:https://github.com/flyteorg/flytekit-java.git</developerConnection> <tag>0.4.62</tag> <url>https://github.com/flyteorg/flytekit-java</url> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-jackson</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-java</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-scala_2.12</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-scala_2.13</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-scala-tests_2.13</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-testing</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-examples</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-examples-scala_2.13</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flytekit-local-engine</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>flyteidl-protos</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>jflyte-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>jflyte-aws</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>jflyte-google-cloud</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>jflyte-utils</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>jflyte</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.flyte</groupId> <artifactId>integration-tests</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.21.0</version> <configuration> <pom> <licenseHeader> <content><![CDATA[<!-- Copyright $YEAR Flyte Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -->]]></content> <delimiter><![CDATA[<project]]></delimiter> </licenseHeader> <sortPom> <encoding>UTF-8</encoding> <lineSeparator>${line.separator}</lineSeparator> <expandEmptyElements>false</expandEmptyElements> <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement> <keepBlankLines>true</keepBlankLines> <nrOfIndentSpace>2</nrOfIndentSpace> <indentBlankLines>false</indentBlankLines> <indentSchemaLocation>false</indentSchemaLocation> <predefinedSortOrder>recommended_2008_06</predefinedSortOrder> <sortProperties>false</sortProperties> <sortModules>false</sortModules> <sortExecutions>false</sortExecutions> </sortPom> </pom> <formats> <format> <includes> <include>**/src/**.xml</include> </includes> <!-- Files must end with a newline --> <endWithNewline /> </format> </formats> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <!-- Based on: https://central.sonatype.org/pages/apache-maven.html--> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> <configuration> <gpgArguments> <arg>--batch</arg> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <configuration> <source>8</source> <doclint>all,-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>