Skip to content

Commit

Permalink
Update for BTrace 2.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachorik committed Nov 9, 2024
1 parent 50fa9c3 commit 0375e39
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Provides Maven integration for [BTrace](https://github.com/btraceio/btrace)

__Version: 2.2.5__
__Version: 2.2.6__

## Components

Expand All @@ -15,7 +15,7 @@ Allows compilation of BTrace scripts as a part of the Maven project lifecycle.
<plugin>
<groupId>io.btrace</groupId>
<artifactId>btrace-maven-plugin</artifactId>
<version>2.2.5</version>
<version>2.2.6</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -52,7 +52,7 @@ mvn archetype:generate
-DartifactId=[your project's artifact id]
-DarchetypeGroupId=io.btrace
-DarchetypeArtifactId=btrace-project-archetype
-DarchetypeVersion=2.2.5
-DarchetypeVersion=2.2.6
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions btrace-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.btrace</groupId>
<artifactId>btrace-maven</artifactId>
<version>2.2.5</version>
<version>2.2.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>btrace-maven-plugin</artifactId>
Expand Down Expand Up @@ -72,7 +72,7 @@
<dependency>
<groupId>io.btrace</groupId>
<artifactId>btrace-client</artifactId>
<version>2.2.5</version>
<version>2.2.6</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down
2 changes: 1 addition & 1 deletion btrace-project-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.btrace</groupId>
<artifactId>btrace-maven</artifactId>
<version>2.2.5</version>
<version>2.2.6</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<version>${version}</version>

<properties>
<btrace.plugin.version>2.2.5</btrace.plugin.version>
<btrace.plugin.version>2.2.6</btrace.plugin.version>
</properties>

<dependencies>
Expand Down
18 changes: 16 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,27 @@
<scm>
<connection>https://github.com/btraceio/btrace-maven.git</connection>
<url>https://github.com/btraceio/btrace-maven</url>
<tag>2.2.5</tag>
<tag>2.2.6</tag>
</scm>
<groupId>io.btrace</groupId>
<artifactId>btrace-maven</artifactId>
<packaging>pom</packaging>
<name>BTrace Maven Support</name>
<version>2.2.5</version>
<version>2.2.6</version>
<repositories>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
</repository>
<repository>
<id>ossrh-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
Expand Down

0 comments on commit 0375e39

Please sign in to comment.