Skip to content

Commit

Permalink
Added a new extensions classifier including compiled classes for engi…
Browse files Browse the repository at this point in the history
…nes (Alfresco#838)
  • Loading branch information
OpenPj committed Jul 17, 2023
1 parent 3e93562 commit e37b91f
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 5 deletions.
13 changes: 12 additions & 1 deletion engines/imagemagick/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,26 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>jar-for-tests</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>jar-for-creating-extensions</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>extensions</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down
13 changes: 12 additions & 1 deletion engines/libreoffice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,26 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>jar-for-tests</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>jar-for-creating-extensions</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>extensions</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down
13 changes: 12 additions & 1 deletion engines/misc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,26 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>jar-for-tests</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>jar-for-creating-extensions</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>extensions</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down
13 changes: 12 additions & 1 deletion engines/pdfrenderer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,26 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>jar-for-tests</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>jar-for-creating-extensions</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>extensions</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down
13 changes: 12 additions & 1 deletion engines/tika/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,26 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>jar-for-tests</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>jar-for-creating-extensions</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>extensions</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down

0 comments on commit e37b91f

Please sign in to comment.