Skip to content

Commit

Permalink
ao-fluent-html-any is a direct dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-apps committed Jul 3, 2023
1 parent 45a259c commit 062cc6f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
1 change: 1 addition & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def upstreamProjects = [
'../../oss/encoding-servlet', // <groupId>com.aoapps</groupId><artifactId>ao-encoding-servlet</artifactId>
'../../oss/encoding-taglib', // <groupId>com.aoapps</groupId><artifactId>ao-encoding-taglib</artifactId>
'../../oss/fluent-html', // <groupId>com.aoapps</groupId><artifactId>ao-fluent-html</artifactId>
'../../oss/fluent-html-any', // <groupId>com.aoapps</groupId><artifactId>ao-fluent-html-any</artifactId>
'../../oss/fluent-html-servlet', // <groupId>com.aoapps</groupId><artifactId>ao-fluent-html-servlet</artifactId>
'../../oss/io-buffer', // <groupId>com.aoapps</groupId><artifactId>ao-io-buffer</artifactId>
'../../oss/lang', // <groupId>com.aoapps</groupId><artifactId>ao-lang</artifactId>
Expand Down
18 changes: 15 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,11 @@ along with pragmatickm-password-taglib. If not, see <https://www.gnu.org/licens
<includes>element-list, package-list</includes>
<outputDirectory>${project.build.directory}/offlineLinks/com.aoapps/ao-fluent-html</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html-any</artifactId><classifier>javadoc</classifier>
<includes>element-list, package-list</includes>
<outputDirectory>${project.build.directory}/offlineLinks/com.aoapps/ao-fluent-html-any</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html-servlet</artifactId><classifier>javadoc</classifier>
<includes>element-list, package-list</includes>
Expand Down Expand Up @@ -248,6 +253,10 @@ along with pragmatickm-password-taglib. If not, see <https://www.gnu.org/licens
<url>https://oss.aoapps.com/fluent-html/apidocs/</url>
<location>${project.build.directory}/offlineLinks/com.aoapps/ao-fluent-html</location>
</offlineLink>
<offlineLink>
<url>https://oss.aoapps.com/fluent-html/any/apidocs/</url>
<location>${project.build.directory}/offlineLinks/com.aoapps/ao-fluent-html-any</location>
</offlineLink>
<offlineLink>
<url>https://oss.aoapps.com/fluent-html/servlet/apidocs/</url>
<location>${project.build.directory}/offlineLinks/com.aoapps/ao-fluent-html-servlet</location>
Expand Down Expand Up @@ -357,6 +366,9 @@ along with pragmatickm-password-taglib. If not, see <https://www.gnu.org/licens
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html</artifactId><version>0.7.0${POST-SNAPSHOT}</version>
</dependency>
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html-any</artifactId><version>0.7.0${POST-SNAPSHOT}</version>
</dependency>
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html-servlet</artifactId><version>0.7.0${POST-SNAPSHOT}</version>
</dependency>
Expand Down Expand Up @@ -400,9 +412,6 @@ along with pragmatickm-password-taglib. If not, see <https://www.gnu.org/licens
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-concurrent</artifactId><version>4.0.5${POST-SNAPSHOT}</version>
</dependency>
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html-any</artifactId><version>0.7.0${POST-SNAPSHOT}</version>
</dependency>
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-hodgepodge</artifactId><version>5.1.2${POST-SNAPSHOT}</version>
</dependency>
Expand Down Expand Up @@ -474,6 +483,9 @@ along with pragmatickm-password-taglib. If not, see <https://www.gnu.org/licens
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html</artifactId>
</dependency>
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html-any</artifactId>
</dependency>
<dependency>
<groupId>com.aoapps</groupId><artifactId>ao-fluent-html-servlet</artifactId>
</dependency>
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* pragmatickm-password-taglib - Passwords nested within SemanticCMS pages and elements in a JSP environment.
* Copyright (C) 2021, 2022 AO Industries, Inc.
* Copyright (C) 2021, 2022, 2023 AO Industries, Inc.
* support@aoindustries.com
* 7262 Bull Pen Cir
* Mobile, AL 36695
Expand All @@ -27,6 +27,7 @@
requires com.aoapps.encoding.servlet; // <groupId>com.aoapps</groupId><artifactId>ao-encoding-servlet</artifactId>
requires com.aoapps.encoding.taglib; // <groupId>com.aoapps</groupId><artifactId>ao-encoding-taglib</artifactId>
requires com.aoapps.html; // <groupId>com.aoapps</groupId><artifactId>ao-fluent-html</artifactId>
requires com.aoapps.html.any; // <groupId>com.aoapps</groupId><artifactId>ao-fluent-html-any</artifactId>
requires com.aoapps.html.servlet; // <groupId>com.aoapps</groupId><artifactId>ao-fluent-html-servlet</artifactId>
requires com.aoapps.io.buffer; // <groupId>com.aoapps</groupId><artifactId>ao-io-buffer</artifactId>
requires com.aoapps.lang; // <groupId>com.aoapps</groupId><artifactId>ao-lang</artifactId>
Expand Down

0 comments on commit 062cc6f

Please sign in to comment.