org.corpus-tools
This is a helper plugin to create a CFF file for a Maven project and include dependencies as references.
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.3%) to scientific vocabulary
Repository
This is a helper plugin to create a CFF file for a Maven project and include dependencies as references.
Basic Info
Statistics
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 3
- Releases: 0
Metadata Files
README.md
Citation File Format Maven plugin
This is a helper plugin to create a CFF file for
a Maven project.
You can generate the citation file of this project by executing
bash
mvn install && mvn cff:create
Goals
cff:create
bash
mvn cff:create
Create Citation File Format with references from the dependencies defined via Maven. The third-party references will be generated by multiple sources, e.g. the Maven metadata or OSGI manifest entries. For artifacts, which are located in a P2 repository and mapped to Maven by Eclipse Tycho, heuristics can be applied to find a corresponding Maven Central artifact or query the Clearly Defined REST API if the artifact is known in their curated database.
| Parameter | Default Value | Description |
| -------------------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| input | <empty> | A CFF input file that will be extended. E.g. if you want to add additional information to the CFF file that is not automatically generated, you can write this information into the input file and and the plugin will extend the input file with new information, but will not override existing existing entries. |
| skipExistingDependencies | true | If true, don't replace existing reference entries from the input file. |
cff:third-party-folder
Extracts third-party license files like LICENSE.txt, NOTICE or about.html into a folder.
bash
mvn cff:third-party-folder
| Parameter | Default Value | Description |
| -------------- | ------------- | ------------------------------------------------------------------------------------------------- |
| deleteFolder | true | If true, deletes the contents of the given third party folder before copying the license files. |
Common parameters
The following parameters are accepted by all goals and configure the basic behavior like the artifact resolution heuristics.
| Parameter | Default Value | Description |
| ------------------------ | ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| output | ${basedir}/CITATION.cff | The output file |
| thirdPartyFolder | ${basedir}/THIRD-PARTY | If available, third-party license files like NOTICE or about.html are added to a |
| includeEmail | true | If true, include the e-mail information from the Maven metadata into author information. |
| referenceTemplates | <empty> | A list of templates for references that is used as replacement for the automatic generated reference entry. This allows to add curated entries when the automatic heuristics fail or information is incorrect. |
| subfolder of this folder |
| ignoredArtifacts | <empty> | A list of regular expression patterns of artifact IDs to ignore. |
| p2IgnorePatchLevel | true | Ignore any patch level information when applying the heuristics to P2 artifacts |
| p2ReconstructGroupId | false | For P2 bundles, try to reconstruct a group ID from the bundle name. |
Curated reference templates
Sometimes, it can happen that an information in the meta-data of Maven or the other sources is wrong or incomplete. To allow manually curated reference entries, you can create a template file for the reference using the Handlebars syntax.
To configure reference templates, add the following configuration to the cff-maven-plugin configuration in Maven (either in the pluginsManagement/plugins or build/plugins section).
xml
<plugin>
<groupId>org.corpus-tools</groupId>
<artifactId>cff-maven-plugin</artifactId>
<version>SET VERSION HERE</version>
<configuration>
<referenceTemplates>
<referenceTemplate>
<pattern>.*:aopalliance:.*</pattern>
<template>cff-templates/aop.yml</template>
</referenceTemplate>
</referenceTemplates>
</configuration>
</plugin>
A single reference pattern configuration consists of two parts:
- the pattern which is a regular expression the whole Maven Artifact ID (including group ID and version)
- a path to the template file.
You can add several <referenceTemplate> entries to the list.
The first pattern that matches will be used.
The template file itself is a YAML file where you can use Handlebar expressions using the
Maven Artifact POJO as context as in the following example with {{artifactId}} or {{version}} expressions that directly map to the corresponding fields of the Artififact POJO:
yaml
type: software
title: Java/J2EE AOP standards
abbreviation: '{{artifactId}}'
version: '{{version}}'
license: CC-PDDC
url: http://aopalliance.sourceforge.net/
notes: Library for interoperability for Java AOP implementations.
copyright: Published in the public domain.
authors:
- name: The AOP Alliance
Owner
- Name: Hexatomic research project
- Login: hexatomic
- Kind: organization
- Location: Berlin & Jena, Germany
- Repositories: 4
- Profile: https://github.com/hexatomic
Citation (CITATION.cff)
cff-version: 1.2.0
type: software
message: If you use this software, please cite it as below.
title: CFF Maven Plugin
authors:
- family-names: Krause
given-names: Thomas
orcid: https://orcid.org/0000-0003-3731-2422
- family-names: Druskat
given-names: Stephan
orcid: https://orcid.org/0000-0003-4925-7248
version: 0.8.0
date-released: 2023-03-07
repository-code: https://github.com/hexatomic/cff-maven-plugin
references:
- title: Citation File Format (CFF)
version: 1.2.0
type: standard
doi: 10.5281/zenodo.1003149
date-released: 2021-08-09
authors:
- family-names: Druskat
given-names: Stephan
orcid: https://orcid.org/0000-0003-4925-7248
- family-names: Spaaks
given-names: Jurriaan H.
orcid: https://orcid.org/0000-0002-7064-4069
- family-names: Chue Hong
given-names: Neil
orcid: https://orcid.org/0000-0002-8876-7606
- family-names: Haines
given-names: Robert
orcid: https://orcid.org/0000-0002-9538-7919
- family-names: Baker
given-names: James
orcid: https://orcid.org/0000-0002-2682-6922
- type: software
title: Animal Sniffer Annotations
version: '1.14'
abbreviation: org.codehaus.mojo:animal-sniffer-annotations
license: MIT
notes: More license information can be found in the THIRD-PARTY/Animal_Sniffer_Annotations
directory.
authors:
- name: Kohsuke Kaw
- name: Stephen Connolly
repository-code: http://fisheye.codehaus.org/browse/mojo/tags/animal-sniffer-parent-1.14/animal-sniffer-annotations
- type: software
title: Apache Commons IO
version: 2.11.0
abbreviation: commons-io:commons-io
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Commons_IO
directory.
authors:
- name: Scott Sanders
- name: dIon Gillard
- name: Nicola Ken Barozzi
- name: Henri Yandell
- name: Stephen Colebourne
- name: Jeremias Maerki
- name: Matthew Hawthorne
- name: Martin Cooper
- name: Rob Oxspring
- name: Jochen Wiedmann
- name: Niall Pemberton
- name: Jukka Zitting
- name: Gary Gregory
- name: Kristian Rosenvold
repository-code: https://gitbox.apache.org/repos/asf?p=commons-io.git
- type: software
title: Apache Commons Lang
version: 3.8.1
abbreviation: org.apache.commons:commons-lang3
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Commons_Lang
directory.
authors:
- name: Daniel Rall
- name: Stephen Colebourne
- name: Henri Yandell
- name: Steven Caswell
- name: Robert Burrell Donkin
- name: Gary D. Gregory
- name: Fredrik Westermarck
- name: James Carman
- name: Niall Pemberton
- name: Matt Benson
- name: Joerg Schaible
- name: Oliver Heger
- name: Paul Benedict
- name: Benedikt Ritter
- name: Duncan Jones
- name: Loic Guibert
- name: Rob Tompkins
repository-code: https://git-wip-us.apache.org/repos/asf?p=commons-lang.git
- type: software
title: Apache Maven Shared Utils
version: 3.2.1
abbreviation: org.apache.maven.shared:maven-shared-utils
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Maven_Shared_Utils
directory.
authors:
- name: Hervé Boutemy
- name: Andreas Gudian
- name: Arnaud Héritier
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Robert Scholte
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Anders Hammar
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven-shared-utils/tree/maven-shared-utils-3.2.1
- type: software
title: 'Apache Maven Wagon :: API'
version: 3.3.4
abbreviation: org.apache.maven.wagon:wagon-provider-api
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Maven_Wagon_API
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven-wagon/tree/wagon-3.3.4/wagon-provider-api
- type: software
title: CDI APIs
version: '1.0'
abbreviation: javax.enterprise:cdi-api
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/CDI_APIs directory.
authors:
- name: Pete Muir
- name: Shane Bryzak
- name: David Allen
- name: Nicklas Karlsson
repository-code: http://fisheye.jboss.org/browse/Weld/api/tags/1.0/build/tags/weld-parent-6/weld-api-bom/weld-api-parent/cdi-api
- type: software
title: Checker Qual
version: 2.0.0
abbreviation: org.checkerframework:checker-compat-qual
license: GPL-2.0-with-classpath-exception
notes: More license information can be found in the THIRD-PARTY/Checker_Qual directory.
authors:
- name: Michael Ernst
- name: Werner M. Dietl
- name: Suzanne Millstein
- name: David McArthur
- name: Dan Brown
- name: Jonathan G. Burke
repository-code: https://github.com/typetools/checker-framework.git
- type: software
title: Ehcache
version: 3.1.3
abbreviation: org.ehcache:ehcache
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Ehcache directory.
authors:
- name: Terracotta Engineers
repository-code: https://github.com/ehcache/ehcache3
- type: software
title: FindBugs-jsr305
version: 3.0.2
abbreviation: com.google.code.findbugs:jsr305
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/FindBugs_jsr305
directory.
authors:
- name: The FindBugs-jsr305 3.0.2 Team
repository-code: https://code.google.com/p/jsr-305/
- type: software
title: Google Guice - Core Library
version: 4.2.1
abbreviation: com.google.inject:guice
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Google_Guice_Core_Library
directory.
authors:
- name: The Google Guice - Core Library 4.2.1 Team
repository-code: https://github.com/google/guice/guice
- type: software
title: 'Guava: Google Core Libraries for Java'
version: 25.1-android
abbreviation: com.google.guava:guava
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Guava_Google_Core_Libraries_for_Java
directory.
authors:
- name: Kevin Bourrillion
repository-code: https://github.com/google/guava/guava
- type: software
title: Handlebars
version: 4.2.0
abbreviation: com.github.jknack:handlebars
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Handlebars directory.
authors:
- name: Edgar Espina
- type: software
title: IntelliJ IDEA Annotations
version: '13.0'
abbreviation: org.jetbrains:annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/IntelliJ_IDEA_Annotations
directory.
authors:
- name: JetBrains Team
repository-code: https://github.com/JetBrains/intellij-community
- type: software
title: J2ObjC Annotations
version: '1.1'
abbreviation: com.google.j2objc:j2objc-annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/J2ObjC_Annotations
directory.
authors:
- name: The J2ObjC Annotations 1.1 Team
repository-code: http://svn.sonatype.org/spice/tags/oss-parent-7/j2objc-annotations
- type: software
title: JSON in Java
version: '20210307'
abbreviation: org.json:json
license: JSON
notes: More license information can be found in the THIRD-PARTY/JSON_in_Java directory.
authors:
- name: Douglas Crockford
repository-code: https://github.com/douglascrockford/JSON-java.git
- type: software
title: JSR-250 Common Annotations for the JavaTM Platform
version: '1.0'
abbreviation: javax.annotation:jsr250-api
license: CDDL-1.0
notes: More license information can be found in the THIRD-PARTY/JSR_250_Common_Annotations_for_the_JavaTM_Platform
directory.
authors:
- name: The JSR-250 Common Annotations for the JavaTM Platform 1.0 Team
- type: software
title: Java/J2EE AOP standards
abbreviation: aopalliance
version: '1.0'
license: CC-PDDC
url: http://aopalliance.sourceforge.net/
notes: Library for interoperability for Java AOP implementations.
copyright: Published in the public domain.
authors:
- name: The AOP Alliance
- type: software
title: Kotlin Stdlib
version: 1.6.20
abbreviation: org.jetbrains.kotlin:kotlin-stdlib
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Kotlin_Stdlib directory.
authors:
- name: Kotlin Team
repository-code: https://github.com/JetBrains/kotlin
- type: software
title: Kotlin Stdlib Common
version: 1.5.31
abbreviation: org.jetbrains.kotlin:kotlin-stdlib-common
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Kotlin_Stdlib_Common
directory.
authors:
- name: Kotlin Team
repository-code: https://github.com/JetBrains/kotlin
- type: software
title: Kotlin Stdlib Jdk7
version: 1.5.31
abbreviation: org.jetbrains.kotlin:kotlin-stdlib-jdk7
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Kotlin_Stdlib_Jdk7
directory.
authors:
- name: Kotlin Team
repository-code: https://github.com/JetBrains/kotlin
- type: software
title: Kotlin Stdlib Jdk8
version: 1.5.31
abbreviation: org.jetbrains.kotlin:kotlin-stdlib-jdk8
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Kotlin_Stdlib_Jdk8
directory.
authors:
- name: Kotlin Team
repository-code: https://github.com/JetBrains/kotlin
- type: software
title: Maven Artifact
version: 3.6.3
abbreviation: org.apache.maven:maven-artifact
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Artifact directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-artifact
- type: software
title: Maven Artifact Resolver API
version: 1.4.1
abbreviation: org.apache.maven.resolver:maven-resolver-api
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Artifact_Resolver_API
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven-resolver/tree/maven-resolver-1.4.1/maven-resolver-api
- type: software
title: Maven Artifact Resolver Implementation
version: 1.4.1
abbreviation: org.apache.maven.resolver:maven-resolver-impl
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Artifact_Resolver_Implementation
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven-resolver/tree/maven-resolver-1.4.1/maven-resolver-impl
- type: software
title: Maven Artifact Resolver Provider
version: 3.6.3
abbreviation: org.apache.maven:maven-resolver-provider
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Artifact_Resolver_Provider
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-resolver-provider
- type: software
title: Maven Artifact Resolver SPI
version: 1.4.1
abbreviation: org.apache.maven.resolver:maven-resolver-spi
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Artifact_Resolver_SPI
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven-resolver/tree/maven-resolver-1.4.1/maven-resolver-spi
- type: software
title: Maven Artifact Resolver Utilities
version: 1.4.1
abbreviation: org.apache.maven.resolver:maven-resolver-util
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Artifact_Resolver_Utilities
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven-resolver/tree/maven-resolver-1.4.1/maven-resolver-util
- type: software
title: Maven Builder Support
version: 3.6.3
abbreviation: org.apache.maven:maven-builder-support
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Builder_Support
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-builder-support
- type: software
title: Maven Compat
version: 3.6.3
abbreviation: org.apache.maven:maven-compat
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Compat directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-compat
- type: software
title: Maven Core
version: 3.6.3
abbreviation: org.apache.maven:maven-core
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Core directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-core
- type: software
title: Maven Model
version: 3.6.3
abbreviation: org.apache.maven:maven-model
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Model directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-model
- type: software
title: Maven Model Builder
version: 3.6.3
abbreviation: org.apache.maven:maven-model-builder
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Model_Builder
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-model-builder
- type: software
title: Maven Plugin API
version: 3.6.3
abbreviation: org.apache.maven:maven-plugin-api
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Plugin_API
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-plugin-api
- type: software
title: Maven Plugin Tools Java Annotations
version: 3.6.0
abbreviation: org.apache.maven.plugin-tools:maven-plugin-annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Plugin_Tools_Java_Annotations
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven-plugin-tools/tree/maven-plugin-tools-3.6.0/maven-plugin-annotations
- type: software
title: Maven Repository Metadata Model
version: 3.6.3
abbreviation: org.apache.maven:maven-repository-metadata
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Repository_Metadata_Model
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-repository-metadata
- type: software
title: Maven Settings
version: 3.6.3
abbreviation: org.apache.maven:maven-settings
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Settings directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-settings
- type: software
title: Maven Settings Builder
version: 3.6.3
abbreviation: org.apache.maven:maven-settings-builder
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Maven_Settings_Builder
directory.
authors:
- name: Robert Scholte
- name: Arnaud Héritier
- name: Anders Hammar
- name: Barrie Treloar
- name: Benson Margulies
- name: Brian Fox
- name: Tamas Cservenak
- name: Dennis Lundberg
- name: Daniel Kulp
- name: Emmanuel Venisse
- name: Guillaume Boué
- name: Hervé Boutemy
- name: Igor Fedorenko
- name: Jason van Zyl
- name: Karl Heinz Marbaise
- name: Kristian Rosenvold
- name: Milos Kleint
- name: Olivier Lamy
- name: Michael Osipov
- name: Ralph Goers
- name: Stephane Nicoll
- name: Stephen Connolly
- name: Tibor Digaňa
- name: Vincent Siveton
- name: Wayne Fay
- name: Andreas Dangel
- name: Brian Demers
- name: Fabrice Bellingard
- name: Benjamin Bentmann
- name: Chris Graham
- name: Dan Tran
- name: Damian Bradicich
- name: Brett Porter
- name: Daniel Fabulich
- name: Fabrizio Giustina
- name: Evgeny Mandrikov
- name: Andrew Williams
- name: Dominik Bartholdi
- name: Jeff Jensen
- name: Lukas Theussl
- name: Mark Hobson
- name: Mauro Talevi
- name: Mirko Friedenhagen
- name: Manfred Moser
- name: Nicolas de Loof
- name: Maria Odea B. Ching
- name: Paul Gier
- name: Petar Tahchiev
- name: Raphaël Piéroni
- name: Christian Schulte
- name: Simone Tripodi
- name: Christian Stein
- name: Mark Struberg
- name: Tony Chemit
- name: Vincent Massol
- name: Andreas Gudian
- name: Allan Q. Ramirez
- name: Henri Yandell
- name: Carlos Sanchez
- name: Chris Stevenson
- name: David Blevins
- name: Daniel Rall
- name: Edwin Punzalan
- name: Felipe Leme
- name: John Casey
- name: Jesse McConnell
- name: Joakim Erdfelt
- name: Johnny Ruiz III
- name: James Strachan
- name: Ernesto Tolentino Jr.
- name: Kenney Westerhof
- name: Mike Perham
- name: Oleg Gusakov
- name: Patrick Schneider
- name: Rahul Thakur
- name: Shinobu Kuwai
- name: Torbjorn Eikli Smorgrav
- name: Trygve Laugstol
- name: Wendy Smoak
repository-code: https://github.com/apache/maven/tree/maven-3.6.3/maven-settings-builder
- type: software
title: 'Plexus :: Component Annotations'
version: 2.1.0
abbreviation: org.codehaus.plexus:plexus-component-annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Plexus_Component_Annotations
directory.
authors:
- name: Jason van Zyl
- name: Pete Kazmier
- name: James Taylor
- name: Dan Diephouse
- name: Kasper Nielsen
- name: Ben Walding
- name: Mark Wilkinson
- name: Michal Maczka
- name: Emmanuel Venisse
- name: Trygve Laugstøl
- name: Kenney Westerhof
- name: Carlos Sanchez
- name: Brett Porter
- name: John Casey
- name: Andrew Williams
- name: Rahul Thakur
- name: Joakim Erdfelt
- name: Olivier Lamy
- name: Hervé Boutemy
- name: Oleg Gusakov
- name: Vincent Siveton
- name: Kristian Rosenvold
- name: Andreas Gudian
- name: Karl Heinz Marbaise
- name: Michael Osipov
repository-code: https://github.com/codehaus-plexus/plexus-containers/plexus-component-annotations
- type: software
title: 'Plexus Cipher: encryption/decryption Component'
version: '1.4'
abbreviation: org.sonatype.plexus:plexus-cipher
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Plexus_Cipher_encryption_decryption_Component
directory.
authors:
- name: 'The Plexus Cipher: encryption/decryption Component 1.4 Team'
repository-code: http://svn.sonatype.org/spice/tags/plexus-cipher-1.4
- type: software
title: Plexus Classworlds
version: 2.6.0
abbreviation: org.codehaus.plexus:plexus-classworlds
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Plexus_Classworlds
directory.
authors:
- name: Jason van Zyl
- name: Pete Kazmier
- name: James Taylor
- name: Dan Diephouse
- name: Kasper Nielsen
- name: Ben Walding
- name: Mark Wilkinson
- name: Michal Maczka
- name: Emmanuel Venisse
- name: Trygve Laugstøl
- name: Kenney Westerhof
- name: Carlos Sanchez
- name: Brett Porter
- name: John Casey
- name: Andrew Williams
- name: Rahul Thakur
- name: Joakim Erdfelt
- name: Olivier Lamy
- name: Hervé Boutemy
- name: Oleg Gusakov
- name: Vincent Siveton
- name: Kristian Rosenvold
- name: Andreas Gudian
- name: Karl Heinz Marbaise
- name: Michael Osipov
repository-code: http://github.com/codehaus-plexus/plexus-classworlds/tree/plexus-classworlds-2.6.0/
- type: software
title: Plexus Common Utilities
version: 3.2.1
abbreviation: org.codehaus.plexus:plexus-utils
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Plexus_Common_Utilities
directory.
authors:
- name: Jason van Zyl
- name: Pete Kazmier
- name: James Taylor
- name: Dan Diephouse
- name: Kasper Nielsen
- name: Ben Walding
- name: Mark Wilkinson
- name: Michal Maczka
- name: Emmanuel Venisse
- name: Trygve Laugstøl
- name: Kenney Westerhof
- name: Carlos Sanchez
- name: Brett Porter
- name: John Casey
- name: Andrew Williams
- name: Rahul Thakur
- name: Joakim Erdfelt
- name: Olivier Lamy
- name: Hervé Boutemy
- name: Oleg Gusakov
- name: Vincent Siveton
- name: Kristian Rosenvold
- name: Andreas Gudian
- name: Karl Heinz Marbaise
- name: Michael Osipov
repository-code: http://github.com/codehaus-plexus/plexus-utils
- type: software
title: Plexus Interpolation API
version: '1.25'
abbreviation: org.codehaus.plexus:plexus-interpolation
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Plexus_Interpolation_API
directory.
authors:
- name: Jason van Zyl
- name: Pete Kazmier
- name: James Taylor
- name: Dan Diephouse
- name: Kasper Nielsen
- name: Ben Walding
- name: Mark Wilkinson
- name: Michal Maczka
- name: Emmanuel Venisse
- name: Trygve Laugstøl
- name: Kenney Westerhof
- name: Carlos Sanchez
- name: Brett Porter
- name: John Casey
- name: Andrew Williams
- name: Rahul Thakur
- name: Joakim Erdfelt
- name: Olivier Lamy
- name: Hervé Boutemy
- name: Oleg Gusakov
- name: Vincent Siveton
- name: Kristian Rosenvold
- name: Andreas Gudian
- name: Karl Heinz Marbaise
- name: Michael Osipov
repository-code: http://github.com/codehaus-plexus/plexus-interpolation/tree/plexus-interpolation-1.25/
- type: software
title: Plexus Security Dispatcher Component
version: '1.4'
abbreviation: org.sonatype.plexus:plexus-sec-dispatcher
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Plexus_Security_Dispatcher_Component
directory.
authors:
- name: The Plexus Security Dispatcher Component 1.4 Team
repository-code: http://svn.sonatype.org/spice/tags/plexus-sec-dispatcher-1.4
- type: software
title: SLF4J API Module
version: 1.7.25
abbreviation: org.slf4j:slf4j-api
license: MIT
notes: More license information can be found in the THIRD-PARTY/SLF4J_API_Module
directory.
authors:
- name: Ceki Gulcu
repository-code: https://github.com/qos-ch/slf4j/slf4j-api
- type: software
title: SnakeYAML Engine
version: 2.2.1
abbreviation: org.snakeyaml:snakeyaml-engine
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/SnakeYAML_Engine
directory.
authors:
- name: Andrey Somov
- name: Alexander Maslov
repository-code: https://bitbucket.org/asomov/snakeyaml-engine/src
- type: software
title: error-prone annotations
version: 2.1.3
abbreviation: com.google.errorprone:error_prone_annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/error_prone_annotations
directory.
authors:
- name: The error-prone annotations 2.1.3 Team
repository-code: https://github.com/google/error-prone/error_prone_annotations
- type: software
title: javax.inject
version: '1'
abbreviation: javax.inject:javax.inject
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/javax.inject directory.
authors:
- name: The javax.inject 1 Team
repository-code: http://code.google.com/p/atinject/source/checkout
- type: software
title: okhttp
version: 4.10.0
abbreviation: com.squareup.okhttp3:okhttp
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/okhttp directory.
authors:
- name: Square, Inc.
repository-code: https://github.com/square/okhttp
- type: software
title: okio
version: 3.0.0
abbreviation: com.squareup.okio:okio-jvm
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/okio directory.
authors:
- name: Square, Inc.
repository-code: https://github.com/square/okio/
- type: software
title: org.eclipse.sisu.inject
version: 0.3.4
abbreviation: org.eclipse.sisu:org.eclipse.sisu.inject
license: EPL-1.0
notes: More license information can be found in the THIRD-PARTY/org.eclipse.sisu.inject
directory.
authors:
- name: The org.eclipse.sisu.inject 0.3.4 Team
repository-code: http://git.eclipse.org/c/sisu/org.eclipse.sisu.inject.git/tree/org.eclipse.sisu.inject/
- type: software
title: org.eclipse.sisu.plexus
version: 0.3.4
abbreviation: org.eclipse.sisu:org.eclipse.sisu.plexus
license: EPL-1.0
notes: More license information can be found in the THIRD-PARTY/org.eclipse.sisu.plexus
directory.
authors:
- name: The org.eclipse.sisu.plexus 0.3.4 Team
repository-code: http://git.eclipse.org/c/sisu/org.eclipse.sisu.plexus.git/tree/org.eclipse.sisu.plexus/
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: about 2 years ago
All Time
- Total issues: 13
- Total pull requests: 29
- Average time to close issues: 30 days
- Average time to close pull requests: about 1 month
- Total issue authors: 3
- Total pull request authors: 3
- Average comments per issue: 0.85
- Average comments per pull request: 0.76
- Merged pull requests: 23
- Bot issues: 0
- Bot pull requests: 5
Past Year
- Issues: 0
- Pull requests: 11
- Average time to close issues: N/A
- Average time to close pull requests: 22 days
- Issue authors: 0
- Pull request authors: 2
- Average comments per issue: 0
- Average comments per pull request: 0.55
- Merged pull requests: 7
- Bot issues: 0
- Bot pull requests: 4
Top Authors
Issue Authors
- sdruskat (11)
- garydgregory (1)
- thomaskrause (1)
Pull Request Authors
- thomaskrause (21)
- dependabot[bot] (5)
- sdruskat (3)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
- Total downloads: unknown
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 14
repo1.maven.org: org.corpus-tools:cff-maven-plugin
This is a helper plugin to create a CFF file for a Maven project and include dependencies as references.
- Homepage: http://maven.apache.org
- Documentation: https://appdoc.app/artifact/org.corpus-tools/cff-maven-plugin/
- License: Apache License, Version 2.0
-
Latest release: 0.8.1
published over 2 years ago
Rankings
Dependencies
- org.apache.maven.plugin-tools:maven-plugin-annotations 3.6.0 provided
- com.github.jknack:handlebars 4.2.0
- com.squareup.okhttp3:okhttp 4.9.1
- org.apache.commons:commons-io 1.3.2
- org.apache.maven:maven-compat 3.6.3
- org.apache.maven:maven-plugin-api 3.6.3
- org.json:json 20210307
- org.snakeyaml:snakeyaml-engine 2.2.1
- actions/cache v2 composite
- actions/checkout v2 composite
- com.github.jknack:handlebars 4.2.0
- org.apache.commons:commons-io 1.3.2
- commons-io:commons-io 2.11.0
- org.bouncycastle:bcprov-jdk18on 1.72
- org.corpus-tools:license-url-only 1.0.0