Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
added LGPL requirements to 3rdPartyLicensesFolder.
Browse files Browse the repository at this point in the history
Signed-off-by: Philipp Etschel <[email protected]>
  • Loading branch information
etschelp committed Feb 2, 2021
1 parent 2443d2f commit eac1ab6
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ formatter-maven-cache.properties
backend/*/src/main/resources/public/**
# Generated license report
backend/*/src/main/resources/3rdPartyLicenses/**
!backend/*/src/main/resources/3rdPartyLicenses/spotbugs**.txt

# --------------------------------------
# Frontend
Expand Down
27 changes: 27 additions & 0 deletions backend/business-partner-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,33 @@
</licenseMerges>
</configuration>
</plugin>
<!-- LGPL requirement, copy spotbugs sources jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.2</version>
<executions>
<execution>
<id>copy</id>
<phase>generate-resources</phase>
<goals>
<goal>copy</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<type>jar</type>
<overWrite>false</overWrite>
<classifier>sources</classifier>
<outputDirectory>${project.basedir}/src/main/resources/3rdPartyLicenses</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</plugin>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.

2 changes: 1 addition & 1 deletion charts/bpa/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: bpa
description: The Business Partner Agent allows to manage and exchange master data between organizations.
type: application
version: 0.1.0-alpha2.5
version: 0.1.0-alpha2.6

appVersion: latest

Expand Down

0 comments on commit eac1ab6

Please sign in to comment.