ao-oss-parent-1.25.0-SNAPSHOT
Snapshot Notes
- Updated plugin versions.
- Updated to Checkstyle 10.18.1.
ao-oss-parent-1.24.4
Release Notes
- Updated plugin versions.
- Temporarily added new PGP keys that we'll work on getting merged into s4u/pgp-keys-map.
ao-oss-parent-1.24.3
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
- Updated plugin versions.
- Upgraded maven-javadoc-plugin to 3.6.3. MJAVADOC-682 is resolved so removed the "reactor" profile.
- Java updates:
- Java 20 is now end-of-life
- Java 21 is now current stable
- Java 22 is new beta
ao-oss-parent-1.24.2
Release Notes
- Removed <ignoredUnusedDeclaredDependencies><dependency>*:*:pom:*</dependency></ignoredUnusedDeclaredDependencies> from the default for all projects.
-
Removed incorrect direct declaration of a POM dependency. Uses of the previous release may fail with:
Execution attach-javadocs of goal org.apache.maven.plugins:maven-javadoc-plugin:3.6.0:jar failed: '…/javaee-web-api-bom-7.0.1.pom' not allowed on the path, only outputDirectories and jars are accepted
ao-oss-parent-1.24.1
Release Notes
-
To fully satisfy Central Repository Requirements,
all projects must deploy javadoc classifier when have any
*.java
file, even if only amodule-info.java
. Projects that have no public API now generate a placeholder javadoc artifact, with theindex.html
describing the reason why Javadocs are not present. The generated artifacts also contain an emptyelement-list
.
ao-oss-parent-1.24.0
Release Notes
-
Stripping any
-POST-SNAPSHOT
from versions used in Javadoc doctitle, header, packagesheader, and windowtitle. - Added more robots
noindex, nofollow
to javadocs. New property
${subproject.subpath}
that is the path to the sub-project. This should be empty for the top-level project or the path (ending in slash) to append to${project.url}
.One important use is the offsetting of the generated Javadoc
apidocs/
URL. This is because others may publish our sub-project API docs that we do not publish directly (such as books). When published, we do not want conflicting canonical URLs.Sub-projects that both share the same
${project.url}
and generate Javadocs must override this value.- Build steps selection is much more based on properties, where the phase is set to "none" to disable. Although not 100%, this is a major step in this direction.
- Google Analytics tracking code is no longer added using
the
<bottom>
section in maven-javadoc-plugin. Instead, the tracking code is added by the build of the website publishing the API docs using the new AO Ant Tasks project. Importantly, the tracking code is not longer included in Javadocs released to Maven Central. -
GPG signing may be skipped with new profile activated by presence of
profile.d/maven.gpg.skip
. When active, themaven.deploy.skip
,maven.install.skip
, andskipNexusStagingDeployMojo
profiles must also be active. This is primarily used for projects that only run directly in NetBeans.
ao-oss-parent-1.23.2
Release Notes
- Accidentally released 1.23.1 that uses snapshots in plugin dependencies.
ao-oss-parent-1.23.1
Release Notes
-
Avoiding second invocation of
bundle:manifest
during Jenkins "Deploy" stage. The second invocation was polluting the
MANIFEST.MF
with an extra entryOriginally-Created-By: Apache Maven Bundle Plugin 5.1.9
. -
Reproducible build
${project.build.outputTimestamp}
set back to${git.commit.time}
. The property was replaced with a fixed timestamp by Maven Release Plugin during the last release. This caused all child projects to incorrectly use the time that the parent was released, not that of the project's last commit as intended. -
Only doing the second filtering pass of
src/main/resources-filtered
for packaging type "bundle", which none of our projects currently use. This is a workaround for bundle:bundle not including filtered resources directly. This also results in a cleaner and more reproducibleMANIFEST.MF
, withInclude-Resource
no longer including${project.build.directory}/resources-filtered
. - Removed unused build property
${javase.bootclasspath}
. - Defined all versions as Maven properties.
Enabled jacoco-maven-plugin in
<reporting>
(generated site reports).Please note that
mvn site
is currently broken due to MSITE-973. We expect this problem to be resolved when maven-site-plugin-4.0.0-M10 is released.- AO Ant Tasks are now run on every build.
-
Patches timestamps from the last build for entries that are not modified.
These optimized reproducible artifacts accomplish the following:
- Fine-grained timestamp tracking of AAR/JAR/WAR/ZIP artifact entries
- Reduced number of distinct build artifacts
- Correct maintenance and propagation of last-modified time for caching layers, clients, and related tools such as sitemap generators
- SEO filtering of Javadocs, including canonical meta tags, robots noindex, rel="nofollow" links, and XML sitemaps.
-
Patches timestamps from the last build for entries that are not modified.
These optimized reproducible artifacts accomplish the following:
- Set <ignoreNonCompile>true</ignoreNonCompile> as the default for all projects.
release:prepare has no way to avoid it replacing
${git.commit.time}
with a fixed ISO8601 timestamp. Having a fixed timestamp has some arguable benefits regarding build reproducibility, so we're not going to fight this.Releases now use fixed ISO8601 timestamps while snapshots continue to use
${git.commit.time}
. This means that all child projects must define their own${project.build.outputTimestamp}
property in order to not inherit the timestamp of the parent during releases.Since releases no longer depend on
${git.commit.time}
, the git-commit-id-maven-plugin goals are disabled under therelease
profile.We also added an enforcer rule to ensure
${project.build.outputTimestamp}
is correctly set back to${git.commit.time}
after a release.- OSGi improvements:
-
Implementation-Version now uses correct OSGi version format.
Previously was using
${project.version}
, but now uses${parsedVersion.osgiVersion}
from build-helper:parse-version. -
Added
_nouses
to avoid NP-hard time complexity in "uses" resolvers.
-
Implementation-Version now uses correct OSGi version format.
Previously was using
-
New
${devMode}
property that will betrue
only when the "development" profile is active. "publish" profile may not be activated at the same time as "development" profile.
ao-oss-parent-1.23.0
Release Notes
-
Reproducible build
${project.build.outputTimestamp}
is now based off${git.commit.time}
via git-commit-id-maven-plugin. - Builds now require Java 11 or newer.
- Builds now require Maven 3.9.0 or newer for profile activation by packaging.
Using packaging=jar instead of packaging=bundle for all jar projects. OSGi manifest entries are still added, however, as documented at Adding OSGi metadata to existing projects without changing the packaging type. This has the side effect that projects that were previously packaging=jar will now have OSGi manifest entries added. None of our projects were previously of the jar packaging.
This change is required since maven-bundle-plugin has been adding entries with a constant and hard-coded timestamp of 1980-02-01.
These constant timestamps are incompatible with the automatic lastModified parameters added by AO Servlet Last Modified when the resource is contained in a JAR file within
WEB-INF/lib
. This has resulted in browsers using out-of-date cached content.
ao-oss-parent-1.22.0
Release Notes
- Updated plugin versions.
-
New automatic profile for per-project PGP keys map
via
pgp-keys-map.list
file in project root.
ao-oss-parent-1.21.3
Release Notes
- Updated plugin versions.
- Java updates:
- Java 19 is now end-of-life
- Java 20 is now current stable
- Java 21 is new beta
ao-oss-parent-1.21.2
Release Notes
- Updated default project settings for NetBeans 17.
- Updated plugin versions.
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.21.1
Release Notes
- Updated plugin versions.
- Updated to latest release of PGP keys map to maven artifacts.
-
New build property
${build.versionNoPostSnapshot}
that contains the project version number without any trailing-POST-SNAPSHOT
. For example, version 1.2.3-SNAPSHOT remains 1.2.3-SNAPSHOT while both 1.2.3 and 1.2.3-POST-SNAPSHOT become 1.2.3. - Updated links from https://search.maven.org/ to https://central.sonatype.com/
ao-oss-parent-1.21.0
Release Notes
- Enabled Reproducible Builds:
- Removed
Implementation-Build-Date
from all manifest. -
Set
notimestamp
in maven-javadoc-plugin. build.currentYear
property is now extracted fromproject.build.outputTimestamp
. As a result, buildnumber-maven-plugin is no longer part of the build.- Upgraded maven-javadoc-plugin from 3.0.1 to 3.4.1. Due to MJAVADOC-682 not yet resolved, builds will revert to version 3.0.1 under a new "reactor" profile.
- Changed Jenkins builds from Java 11 to Java 17.
-
Jenkins builds now use
.m2/repository-jdk-${jdk}
for all Java versions. Previously, builds for${deployJdk}
used.m2/repository
. This change makes it unnecessary to rename local repositories when changing${deployJdk}
.
- Removed
ao-oss-parent-1.20.2
Release Notes
- Updated plugin versions.
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.20.1
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.20.0
Release Notes
- Jakarta EE updates:
- Added Jakarta EE 10
ao-oss-parent-1.19.11
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.19.10
Release Notes
- Fixed mistake in release 1.19.9 that referenced snapshot version of ao-javadoc-offline.
ao-oss-parent-1.19.9
Release Notes
- Java updates:
- Java 18 is now end-of-life
- Java 19 is now current stable
- Java 20 is new beta
ao-oss-parent-1.19.8
Release Notes
- Updated plugin versions.
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.19.7
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.19.6
Release Notes
- Updated plugin versions.
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.19.5
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
- Updated to Apache Axis2 1.8.2.
ao-oss-parent-1.19.4
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.19.3
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
- Additional client-specific groupId signed by support@aoindustries.com (for developers) or jenkins@aoindustries.com (for Jenkins C.I. builds of *-SNAPSHOT only).
ao-oss-parent-1.19.2
Release Notes
- Updated to Apache Axis2 1.8.1.
ao-oss-parent-1.19.1
Release Notes
- Updated to Checkstyle 10.3.
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.19.0
Release Notes
javax.activation:activation
apidocs now link to https://jakarta.ee/specifications/activation/1.2/apidocs/.
ao-oss-parent-1.18.0
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
- Updated plugin versions.
-
Limited the workaround for JDK-8215291
to only builds in
JDK < 12
with nosrc/main/java/module-info.java
. The previous mitigation was applied too broadly and broke the search URLs for projects with modules. - Reduced size of Javadoc top section and fixed scroll position in Java 11.
Enabled Checkstyle on all builds using Apache Maven Checkstyle Plugin.
The default style is based on Google's Java Style Checkstyle, but with the maximum line length increased to 200 characters.
By default, builds fail on Checkstyle error. Each project that cannot immediately be adapted to pass the analysis should configure the plugin with
<failOnViolation>false</failOnViolation>
.Enabled SpotBugs on all builds using SpotBugs Maven Plugin.
By default, builds fail on SpotBugs error. Each project that cannot immediately be adapted to pass the analysis should configure the plugin with
<failOnError>false</failOnError>
.
ao-oss-parent-1.17.6
Release Notes
- Configured missing automatic release during deployment. Any release artifacts made with the previous parent requires manual "Release" in OSSRH Nexus Repository Manager.
ao-oss-parent-1.17.5
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
- An alternate build directory (other than the
default
target
) may now be selected by providing analt.build.dir
property. We use this in continuous integration to be able to concurrently build a project for multiple JDK versions, significantly reducing the build time. - nexus-staging-maven-plugin
is now only enabled by a new
nexus
profile. This is to support regular deployments via maven-deploy-plugin in continuous integration. - Added Jenkins continuous integration.
ao-oss-parent-1.17.4
Release Notes
- Java updates:
- Java 16 is now end-of-life
- Java 17 is now current stable
- Java 18 is new beta
ao-oss-parent-1.17.3
Release Notes
- "skip-war" profile improvements to increase local development speed:
- Enforces "development" profile is also active
- Disables PGP artifact verification
- Disables GPG artifact signing
- Updated to latest release of PGP keys map to maven artifacts.
- Enabled verifying PGP keys of "provided" dependencies.
ao-oss-parent-1.17.2
Release Notes
- Updated to latest release of PGP keys map to maven artifacts.
ao-oss-parent-1.17.1
Release Notes
- Updated to latest releases of PGP keys map to maven artifacts and AO PGP Keys Map.
- Updated to Apache Axis2 1.8.0.
- Updated plugin versions.
ao-oss-parent-1.17.0
Release Notes
- Added new "coverage" profile that enables JaCoCo unit test code coverage. This is expected to primarily be used within continuous integration systems, and may be used as a basis for SonarCloud/SonarQube analysis.
- Now verifying artifact PGP signatures on all builds. This means that GPG signing is now performed for all builds, including local-only builds with the "development" profile active.
ao-oss-parent-1.16.1
Release Notes
-
Nexus Repository Manager URL is now defined in a
$nexusUrl
property. The URL should end with a slash (/) and is used for both distributionManagement/snapshotRepository and nexus-staging-maven-plugin/nexusUrl. Defaults to https://s01.oss.sonatype.org/ since groupIdcom.aoapps
is on the new Sonatype Nexus Repository Manager.
ao-oss-parent-1.16.0
Release Notes
- Maven artifact relocated from
com.aoindustries:ao-oss-parent
tocom.aoapps:ao-oss-parent
. - Enabled dependency audits on builds.
- Java™ EE updates:
- Default version changed from Java™ EE 6 to Java™ EE 7
- Updated apidocs URL for Jakarta EE 8
- Added Jakarta EE 9
- Added Jakarta EE 9.1
- Changed default Java version from 1.8 to 11
-
Enabled dependency bytecode version checks
on builds. This will ensure a project does not inadvertently depend on a library of a newer Java
version than the project itself. The check is skipped when the
development
profile is active. - Updated plugin versions.
Bundle-SymbolicName
is now defined to be the same as Java 9+ module names.- The "release" profile is now only to be used for production non-SNAPSHOT releases. SNAPSHOT builds should only use the "POST-SNAPSHOT" profile. Local development builds should now use the "development" profile, and may optionally use the "POST-SNAPSHOT" profile.
-
Reverted
maven-dependency-plugin
from version 3.2.0 to 3.1.2 until Issue 753 is resolved. -
Reverted
maven-javadoc-plugin
from version 3.3.0 to 3.0.1 since reactor builds are failing with "Exit code: 1 - error: module not found: …" on projects with Java 9+ modules. Please see Issue 682. Several profiles may now be conveniently activated by the presence of files in an optional
profile.d
directory. This technique is primarily a workaround for profiles not being able to be activated by properties of sub-projects, and has the added benefit that the set of profiles across all projects is easily manipulated through Bash scripts.This includes
maven.javadoc.skip
,maven.install.skip
,maven.deploy.skip
, andskipNexusStagingDeployMojo
, which all have the expected skipping behavior matching the property of the same name.
ao-oss-parent-1.15.1
Release Notes
- Java updates:
- Java 15 is now end-of-life
- Java 16 is now current stable
- Java 17 is new beta
ao-oss-parent-1.15.0
Release Notes
- Updated plugin versions.
-
Removed offline Javadocs for
com.servlets:cos
, since we have eradicated it from all projects in favor of the standard file upload API and JavaMail. - Added workaround for "undefined" in URL during Javadoc search when project has no modules.
ao-oss-parent-1.14.0
Release Notes
-
New build properties
${build.isSnapshot}
and${build.notSnapshot}
that are set totrue
orfalse
, depending in whether the${project.version}
is, or is not respectively,*-SNAPSHOT
. - Updated plugin versions.
ao-oss-parent-1.13.0
Release Notes
- Updated plugin versions.
Switched back to generating Javadocs links with
target="_top"
on all versions of Java. Eventhough the API Docs are generated without frames as of Java 9, they may still be used within frames in other contexts, such as when viewed at https://javadoc.io/.Furthermore, browsers are increasingly blocking or issuing warnings when a link tries to go to a different site within a frame. This change ensures links always escape frames.
ao-oss-parent-1.12.0
Release Notes
- Added default NetBeans server settings.
- Added default NetBeans hint settings.
- Java updates:
- Java 14 is now end-of-life
- Java 15 is now current stable
- Java 16 is new beta
- Updated plugin versions.
ao-oss-parent-1.11.0
Release Notes
- Added default NetBeans formatting settings.
- Added default NetBeans line ending settings.
- Added plugin repositories to match repositories.
- Now analyzing dependencies during release builds.
-
Now automatically configures rulesUri
for versions-maven-plugin
when the
versions-rules.xml
file exists, via a newversions-rules
profile. - Updated plugin versions.
ao-oss-parent-1.10.0
Release Notes
- Corrected the default value for the Maven build property
documented.javadoc.link.javaee
. Set
<detectOfflineLinks>false</detectOfflineLinks>
on maven-javadoc-plugin.Projects are built and released on an individual basis, and thus we manually link between projects to not rely on reactor / aggregator builds to achieve proper linking.
Furthermore, we maximize the use of offline links from javadoc artifacts. This has several benefits:
- Repeatable builds: linking is done against the specified version versus whatever is published online
- More reliable build: does not depend on external apidocs server to be online
- Higher build performance: uses locally cached artifacts instead of http/https requests on each build
- Offline builds: when all artifacts are already locally available
- Private builds: linking to apidocs from private projects not publicly available
- Chicken-and-Egg resolved: can link between projects before publishing any of them
- New version linking: links are properly created before releasing new versions
Default
<links />
converted to<offlineLinks />
on maven-javadoc-plugin, taking advantage of the new AO Javadoc Offline project. Furthermore, the offline links also include JavaMail and Java EE.Offline links are enabled by the new
offlineLinks
profile, which is activated by the presence ofsrc/main/java
. If desired, this profile may be deactivated during a build withmvn -P'!offlineLinks' …
.-
Moved configuration into
<pluginManagement />
where appropriate.One notable consequence is that Javadocs are now fully formatted without requiring the
release
profile. - Restored
Built-By
manifest entry onbundle
andwar
packaging. - Now supporting generated resources on all projects.
Enabled the wagon-ssh-external extension on all projects, which supports access to artifact repositories via
scpexe://…
URLs.Projects that have access to their parent either directly or over HTTP/HTTPS may remove
wagon-ssh-external
from their.mvn/extensions.xml
. However, if the parent is accessed throughscpexe://…
, the declaration inextensions.xml
is still required.
ao-oss-parent-1.9.0
Release Notes
-
Added axis2-aar-maven-plugin for building web services.
- Configured manifest entries consistent with other plugins.
-
Changed
Built-By
manifest entries from defaulting to blank to now defaulting to${project.organization.name}
. -
Enabled
<attachClasses>true</attachClasses>
on maven-war-plugin whensrc/main/java
exists. This allows the classes to by used as a dependency. This is particularly useful for our multi-project translation tools. -
Set
<trimStackTrace>false</trimStackTrace>
on maven-surefire-plugin. The full stack traces of exceptions during testing should help in debugging. -
Defined default compilation resources of both
src/main/resources
andsrc/main/resources-filtered
(filtered). Previously, we had obtained this behavior through configuring plugins directly, but missed the more proper approach of defining in project/build/resources. This cleans-up the implementation, and allows other parts of the configuration to work correctly when projects define different or additional resources. -
Defined default test resources of both
src/test/resources
andsrc/test/resources-filtered
(filtered). This is for consistency with the definition of compilation resources. - Added tests, test-javadoc, and test-sources artifacts, unless empty.
-
Configured maven-war-plugin to support filtered
META-INF/context.xml
, which is used to provide development values to web applications:-
Added filtered web resources
src/main/webapp-filtered
, which is expected to include aMETA-INF/context.xml
. This means that projects must have asrc/main/webapp-filtered
directory, even if just an empty directory. -
Excluded
src/main/webapp/META-INF/context.xml
so that the filtered version may be used. This file still must be present, however, as NetBeans uses this file to determine how to deploy to local development Tomcat. META-INF/context.xml
is not included in the WAR file. The expectation is production values will be provided by the container.
-
Added filtered web resources
ao-oss-parent-1.8.0
Release Notes
Newer versions of Javadocs no longer use frames. We now build API docs with
target="_self"
for JDK >= 9.We still support building with older JDK versions, in which
target="_top"
is used so that links can escape the frames.- Updated plugin versions.
ao-oss-parent-1.7.2
Release Notes
- Updated links to https://search.maven.org/
ao-oss-parent-1.7.1
Release Notes
- Fixed last release referenced
-SNAPSHOT
version ofao-javadoc-resources
.
ao-oss-parent-1.7.0
Release Notes
- Changed default Java version from 1.7 to 1.8
-
Reduced use of property substitutions in
pom.xml
. This is to help 3rd-party parsers that fail to perform full Maven-compatible substitutions. - Now setting build properties
maven.compiler.source
andmaven.compiler.target
. -
Now setting build property
javadoc.link.javamail
in parent POM instead of on a per-project basis. -
Now setting builds properties
documented.javase.version
anddocumented.javadoc.link.javase
in parent POM, with the default Java version (currently 1.8). This allows books to not specify the Java version of the documented project when it is the default. -
Renamed some build properties to better represent their usage:
-
Consolidated build properties
compiler.bootclasspath
andjavac.bootclasspath
into a single propertyjava.bootclasspath
. javaVersion
tojavase.version
javac.link.javaApi
tojavadoc.link.javase
javac.link.javaApi.jdk*
tojavadoc.link.javase.*
javac.link.javaeeApi.*
tojavadoc.link.javaee.*
javac.link.javamailApi
tojavadoc.link.javamail
java.bootclasspath
tojavase.bootclasspath
javase.bootclasspath*
tojavase.bootclasspath.*
documented.javaVersion
todocumented.javase.version
documented.javac.link.javaApi
todocumented.javadoc.link.javase
-
Consolidated build properties
- Renamed profile
bootclasspaths
tojavase.bootclasspath
. - Added build properties for Java EE:
javaee.version
,default6
javadoc.link.javaee
, default${javadoc.link.javaee.6}
documented.javaee.version
, default6
documented.javadoc.link.javaee
, default${javadoc.link.javaee.6}
- Added <source> configuration to maven-javadoc-plugin to build correctly in Java 11.
- Simplified use of maven-gpg-plugin:
- Changed lockMode to a fixed value "multiple"
- Removed defaultKeyring
- Removed useAgent
- Removed publicKeyring
- Removed secretKeyring
- Now using
--release
instead of-bootclasspath
when building with JDK >= 9. - Java updates:
- Java 13 is now end-of-life
- Java 14 is now current stable
- Java 15 is new beta
-
Changed default doclint
from
-Xdoclint:none
to-Xdoclint:all,-missing
. - Updated plugin versions.
ao-oss-parent-1.6.0
Release Notes
-
To significantly reduce the size of Javadocs, using new AO Javadoc Resources
project instead of
data:
URLs.
ao-oss-parent-1.5.0
Release Notes
- Java updates:
- Java 12 is now end-of-life
- Java 13 is now current stable
- Java 14 is new beta
- Updated plugin versions.
ao-oss-parent-1.4.0
Release Notes
Set delimiters for maven-war-plugin to match the configuration of maven-resources-plugin, using
@{*}
.Also enabled filteringDeploymentDescriptors by default.
- Updated plugin versions.
ao-oss-parent-1.3.1
Release Notes
-
Changed
Include-Resource
to{maven-resources}, target/resources-filtered
in order to not leak full build paths intoMETA-INF/MANIFEST.MF
ao-oss-parent-1.3.0
Release Notes
- New profile "POST-SNAPSHOT" that enables the use of
post-release builds as dependencies.
This profile is not active by default. Activate in
~/.m2/settings.xml
to use post-release builds as dependencies:<profile> <id>POST-SNAPSHOT</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <POST-SNAPSHOT>-POST-SNAPSHOT</POST-SNAPSHOT> </properties> </profile>
This profile must not be active while performing a release. Deactivate with:
mvn -Prelease,'!POST-SNAPSHOT' …
Post-release builds happen after a release and before a new -SNAPSHOT is started. They are used to ensure that previous releases still compile against newer dependencies.
Furthermore, post-release builds may contain the following changes without being promoted to the next -SNAPSHOT version:
- Updated parent POM
- Updated POM
- Updated Java version (without any source code changes)
- Updated dependency versions
- Updated javadocs
- Updated documentation
- Updated unit tests
- Deprecated methods and classes
- Renamed private fields and local variables
- Other changes to white-space or comments
Post-release builds also allow NetBeans to correctly connect projects together for those who are actively developing multiple modules.
Those who are only using the dependency can use the regular release to avoid the overhead of the daily check for updates.
ao-oss-parent-1.2.0
Release Notes
- No longer including JUnit version in dependencyManagement. Each project should specify its own JUnit version.
- Set maven-surefire-plugin back to default configuration for better interaction with standard development tools.
- No longer excluding Java EE Web API 6 from version updates. Instead, projects are encouraged to use the new Java™ EE Web Profile BOM project.
- Removed the repository "java.net2" that was going to https://maven.java.net/content/groups/public/. All the artifacts we require are in The Central Repository.
- Supporting parallel development of projects from unrelated clients:
- Multiple GPG signing keys.
- Multiple OSSRH accounts.
- Multiple SSH keys for different GitHub accounts.
- Sharing of all these resources with each client for business continuity.
- Updated plugin versions.
ao-oss-parent-1.1.0
Release Notes
-
Added support for packaging as OSGi bundles as
<packaging>bundle</packaging>
via the Maven Bundle Plugin. - Now including unfiltered form of
src/main/resources-filtered
in source artifacts. - Fixed bug:
build.currentYear
property was only available during release builds. - Now supporting Java 12:
- Changed default Java version from 1.6 to 1.7
- Renamed Maven build property names to not conflict with newer versions of Java:
*.jdk15
→*.jdk5
*.jdk16
→*.jdk6
*.jdk17
→*.jdk7
*.jdk18
→*.jdk8
-
Fixed cross-project linking of javadocs (really this time).
The issue was our redirects from
*/apidocs/
to*/apidocs/index.html
were interacting with a Maven plugin bug: [MJAVADOC-539] Upgrading plugin from 3.0.0 to 3.0.1 and 3.1.0 breaks certain external javadoc links. -
Changed minimum Maven version enforcement from
<prerequisites><maven>…</maven></prerequisites>
to use the Maven Enforcer Plugin instead. This eliminates the warnings introduced in Maven 3.5.0. - Updated plugin versions.
ao-oss-parent-1.0.3
Release Notes
-
Added more plugin versions under
build/pluginManagement
to both support repeatable builds and keep the output ofversions:display-plugin-updates
more meaningful. - Fixed cross-project linking of javadocs.
ao-oss-parent-1.0.2
Release Notes
- Added
--allow-script-in-comments
for Javadoc in JDK 1.8.0_121+. - Updated dependencies.
- Added more properties for Java SE javadocs:
javac.link.javaApi.jdk15
for Java 5javac.link.javaApi.jdk19
for Java 9
- Added properties for Java EE javadocs:
javac.link.javaeeApi.5
for Java EE 5javac.link.javaeeApi.6
for Java EE 6javac.link.javaeeApi.7
for Java EE 7javac.link.javaeeApi.8
for Java EE 8. This is just a link to Java EE overall since the Java EE 8 API has not been released yet.
- Using latest release of plugins.
ao-oss-parent-1.0.1
Release Notes
- Removed erroneous
<inherited>false</inherited>
.
ao-oss-parent-1.0.0
Release Notes
- New parent pom for open-source projects to reduce duplication within pom.xml files
- Made the components of the current version available as parsedVersion.* properties.
- Using dependencyversion-maven-plugin to get dependency versions as properties.