Skip to content

Commit

Permalink
Rebrand as 'jellydoc-maven-plugin'
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Jul 6, 2023
1 parent 9f664a0 commit 7076b83
Show file tree
Hide file tree
Showing 50 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"enabledManagers": ["regex"],
"regexManagers": [
{
"fileMatch": ["maven-jellydoc-plugin/src/site/site.xml"],
"fileMatch": ["jellydoc-maven-plugin/src/site/site.xml"],
"matchStrings": ["<version>(?<currentValue>.*?)<\/version>"],
"depNameTemplate": "org.apache.maven.skins:maven-fluido-skin",
"datasourceTemplate": "maven"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./maven-jellydoc-plugin/target/site
path: ./jellydoc-maven-plugin/target/site

deploy:
environment:
Expand Down
2 changes: 1 addition & 1 deletion annotation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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>
<parent>
<groupId>org.jvnet.maven-jellydoc-plugin</groupId>
<groupId>io.jenkins.tools.maven</groupId>
<artifactId>jellydoc</artifactId>
<version>${revision}${changelist}</version>
<relativePath>../pom.xml</relativePath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<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>
<parent>
<groupId>org.jvnet.maven-jellydoc-plugin</groupId>
<groupId>io.jenkins.tools.maven</groupId>
<artifactId>jellydoc</artifactId>
<version>${revision}${changelist}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>maven-jellydoc-plugin</artifactId>
<artifactId>jellydoc-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>

<name>Maven Jellydoc plugin</name>
<name>Jellydoc Maven plugin</name>

<build>
<plugins>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public void execute() throws MojoExecutionException {

Path docletPath = makePath(p, pluginArtifacts);
try {
Artifact self = factory.createArtifact("org.jvnet.maven-jellydoc-plugin", "maven-jellydoc-plugin", pluginVersion, null, "maven-plugin");
Artifact self = factory.createArtifact("io.jenkins.tools.maven", "jellydoc-maven-plugin", pluginVersion, null, "maven-plugin");
self = resolver.resolveArtifact(session.getProjectBuildingRequest(), self).getArtifact();
docletPath.createPathElement().setLocation(self.getFile());
} catch (ArtifactResolverException e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
------
------

<<<maven-jellydoc-plugin>>> is a Maven2 plugin for generating taglib documentation for {{{http://commons.apache.org/jelly/}Apache Commons Jelly}} from Java source code. In addition, this tool also has the following features:
<<<jellydoc-maven-plugin>>> is a Maven2 plugin for generating taglib documentation for {{{http://commons.apache.org/jelly/}Apache Commons Jelly}} from Java source code. In addition, this tool also has the following features:

* Generating XML Schema for taglib, which in turn can be used in schema-aware editors

Expand All @@ -17,8 +17,8 @@
<reporting>
<plugins>
<plugin>
<groupId>org.jvnet.maven-jellydoc-plugin</groupId>
<artifactId>maven-jellydoc-plugin</artifactId>
<groupId>org.jvnet.jellydoc-maven-plugin</groupId>
<artifactId>jellydoc-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
Expand All @@ -35,8 +35,8 @@
<build>
<plugins>
<plugin>
<groupId>org.jvnet.maven-jellydoc-plugin</groupId>
<artifactId>maven-jellydoc-plugin</artifactId>
<groupId>org.jvnet.jellydoc-maven-plugin</groupId>
<artifactId>jellydoc-maven-plugin</artifactId>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="Maven jellydoc plugin">
<project name="Jellydoc Maven plugin">
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
Expand All @@ -20,7 +20,7 @@
<fluidoSkin>
<sourceLineNumbersEnabled>true</sourceLineNumbersEnabled>
<gitHub>
<projectId>jenkinsci/maven-jellydoc-plugin</projectId>
<projectId>jenkinsci/jellydoc-maven-plugin</projectId>
<ribbonOrientation>right</ribbonOrientation>
<ribbonColor>orange</ribbonColor>
</gitHub>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
<relativePath />
</parent>

<groupId>org.jvnet.maven-jellydoc-plugin</groupId>
<groupId>io.jenkins.tools.maven</groupId>
<artifactId>jellydoc</artifactId>
<version>${revision}${changelist}</version>
<packaging>pom</packaging>

<name>Jellydoc</name>
<url>https://github.com/jenkinsci/maven-jellydoc-plugin</url>
<url>https://github.com/jenkinsci/jellydoc-maven-plugin</url>
<description>Generate documentation from Jelly tag libraries</description>

<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
Expand All @@ -35,7 +35,7 @@
<properties>
<revision>1.12</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/maven-jellydoc-plugin</gitHubRepo>
<gitHubRepo>jenkinsci/jellydoc-maven-plugin</gitHubRepo>
</properties>

<repositories>
Expand Down Expand Up @@ -77,7 +77,7 @@
</build>

<modules>
<module>maven-jellydoc-plugin</module>
<module>jellydoc-maven-plugin</module>
<module>annotation</module>
<module>taglib-xml-writer</module>
</modules>
Expand Down
2 changes: 1 addition & 1 deletion taglib-xml-writer/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?><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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jvnet.maven-jellydoc-plugin</groupId>
<groupId>io.jenkins.tools.maven</groupId>
<artifactId>jellydoc</artifactId>
<version>${revision}${changelist}</version>
<relativePath>../pom.xml</relativePath>
Expand Down

0 comments on commit 7076b83

Please sign in to comment.