japicmp-gradle-plugin icon indicating copy to clipboard operation
japicmp-gradle-plugin copied to clipboard

Add release and snapshot workflows on CI

Open Goooler opened this issue 1 year ago • 0 comments

tree .m2/repository/me/champeau/gradle/

.m2/repository/me/champeau/gradle/
├── japicmp
│   └── me.champeau.gradle.japicmp.gradle.plugin
│       ├── 0.4.4-SNAPSHOT
│       │   ├── maven-metadata-local.xml
│       │   ├── me.champeau.gradle.japicmp.gradle.plugin-0.4.4-SNAPSHOT.pom
│       │   └── me.champeau.gradle.japicmp.gradle.plugin-0.4.4-SNAPSHOT.pom.asc
│       └── maven-metadata-local.xml
└── japicmp-gradle-plugin
    ├── 0.4.4-SNAPSHOT
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT-javadoc.jar
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT-javadoc.jar.asc
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT-sources.jar
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT-sources.jar.asc
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT.jar
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT.jar.asc
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT.module
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT.module.asc
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT.pom
    │   ├── japicmp-gradle-plugin-0.4.4-SNAPSHOT.pom.asc
    │   └── maven-metadata-local.xml
    └── maven-metadata-local.xml

6 directories, 16 files


cat .m2/repository/me/champeau/gradle/japicmp-gradle-plugin/0.4.4-SNAPSHOT/japicmp-gra
dle-plugin-0.4.4-SNAPSHOT.pom

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <!-- This module was also published with a richer model, Gradle metadata,  -->
  <!-- which should be used instead. Do not delete the following line which  -->
  <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
  <!-- that they should prefer consuming it instead. -->
  <!-- do_not_remove: published-with-gradle-metadata -->
  <modelVersion>4.0.0</modelVersion>
  <groupId>me.champeau.gradle</groupId>
  <artifactId>japicmp-gradle-plugin</artifactId>
  <version>0.4.4-SNAPSHOT</version>
  <name>Gradle Plugin for JApicmp</name>
  <description>The japicmp-gradle-plugin provides binary compatibility reporting through JApicmp using Gradle.</description>
  <url>https://github.com/melix/japicmp-gradle-plugin</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>melix</id>
      <name>Cédric Champeau</name>
      <url>https://melix.github.io/blog</url>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/melix/japicmp-gradle-plugin.git</connection>
    <developerConnection>scm:git:ssh://[email protected]/melix/japicmp-gradle-plugin.git</developerConnection>
    <url>https://github.com/melix/japicmp-gradle-plugin</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.github.siom79.japicmp</groupId>
      <artifactId>japicmp</artifactId>
      <version>0.23.0</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <groupId>com.sun.xml.bind</groupId>
          <artifactId>*</artifactId>
        </exclusion>
        <exclusion>
          <groupId>com.google.guava</groupId>
          <artifactId>*</artifactId>
        </exclusion>
        <exclusion>
          <groupId>javax.xml.bind</groupId>
          <artifactId>*</artifactId>
        </exclusion>
        <exclusion>
          <groupId>io.airlift</groupId>
          <artifactId>*</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>

Goooler avatar Aug 27 '24 00:08 Goooler