mlops-agent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.datarobot</groupId> <artifactId>mlops-agent</artifactId> <version>10.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <parent> <artifactId>micronaut-parent</artifactId> <groupId>io.micronaut</groupId> <version>3.1.4</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.datarobot</groupId> <artifactId>mlops-agent</artifactId> <name>${project.groupId}:${project.artifactId}</name> <version>10.2.0</version> <description>DataRobot MLOps Monitoring Agent</description> <url>https://datarobot.com</url> <developers> <developer> <name>DataRobot</name> <email>info@datarobot.com</email> <organization>DataRobot, Inc.</organization> <organizationUrl>https://www.datarobot.com</organizationUrl> </developer> </developers> <licenses> <license> <name>DataRobot Tool and Utility Agreement</name> <url>https://www.datarobot.com/wp-content/uploads/2021/07/DataRobot-Tool-and-Utility-Agreement.pdf</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/datarobot</connection> <developerConnection>scm:git:ssh://github.com:datarobot</developerConnection> <url>https://github.com/datarobot</url> </scm> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>default.agent.conf.yaml</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>io.micronaut.build</groupId> <artifactId>micronaut-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> <annotationProcessorPaths /> <compilerArgs> <arg>-Amicronaut.processing.group=com.datarobot.mlops.agent.server</arg> <arg>-Amicronaut.processing.module=mlops-monitoring-agent</arg> </compilerArgs> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <transformers> <transformer> <mainClass>com.datarobot.mlops.agent.Agent</mainClass> </transformer> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>module-info.class</exclude> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <excludes> <exclude>**/*.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doctitle>API for ${project.name} ${project.version}</doctitle> <windowtitle>API for ${project.name} ${project.version}</windowtitle> <additionalparam>-Xdoclint:none</additionalparam> <source>${java.version}</source> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>java8</id> <properties> <java.version>1.8</java.version> </properties> </profile> <profile> <id>java11</id> <properties> <java.version>11</java.version> </properties> </profile> <profile> <id>release-codegen</id> <distributionManagement> <repository> <id>maven-dev</id> <name>datarobot-maven-dev</name> <url>https://artifactory.devinfra.drdev.io/artifactory/datarobot-maven-dev</url> </repository> <relocation> <groupId>com.datarobot</groupId> </relocation> </distributionManagement> <properties> <java.version>1.8</java.version> </properties> </profile> <profile> <id>public-release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <executions> <execution> <id>injected-nexus-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> <configuration> <serverId>datarobot-sonatype-releases</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </execution> </executions> <configuration> <serverId>datarobot-sonatype-releases</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> <keyname>768A6701</keyname> </configuration> </execution> </executions> <configuration> <keyname>768A6701</keyname> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>${distSonatypeMgmtStagingId}</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>${distSonatypeMgmtSnapshotsId}</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <distSonatypeMgmtSnapshotsId>datarobot-sonatype-snapshots</distSonatypeMgmtSnapshotsId> <java.version>1.8</java.version> <distSonatypeMgmtStagingId>datarobot-sonatype-releases</distSonatypeMgmtStagingId> </properties> </profile> </profiles> <repositories> <repository> <id>central</id> <url>https://repo.maven.apache.org/maven2</url> </repository> <repository> <id>jcenter.bintray.com</id> <url>https://jcenter.bintray.com</url> </repository> <repository> <id>datarobot-maven-dev</id> <url>https://artifactory.devinfra.drdev.io/artifactory/datarobot-maven-dev/</url> </repository> </repositories> <dependencies> <dependency> <groupId>io.micronaut.test</groupId> <artifactId>micronaut-test-junit5</artifactId> <version>3.0.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>micronaut-test-core</artifactId> <groupId>io.micronaut.test</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>2.0.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>powermock-module-junit4-common</artifactId> <groupId>org.powermock</groupId> </exclusion> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <version>2.0.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>powermock-api-support</artifactId> <groupId>org.powermock</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.23.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.7.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <encoding>UTF-8</encoding> <slf4j.version>1.7.30</slf4j.version> <mlops.java.lib.version>${project.version}</mlops.java.lib.version> <mlops.common.version>${project.version}</mlops.common.version> <micronaut.version>3.1.4</micronaut.version> <micronaut.runtime>netty</micronaut.runtime> <mlopsPyLibConfResource>${basedir}/../mlops-py/lib</mlopsPyLibConfResource> <maven.compiler.target>${java.version}</maven.compiler.target> <mlopsPyLibResource>${basedir}/../mlops-py/lib</mlopsPyLibResource> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdk.version>${java.version}</jdk.version> <maven.compiler.source>${java.version}</maven.compiler.source> </properties> </project>