openesb-components/contrib-zaz/screenscrapingse/jbiadapter/pom.xml

125 lines
5.6 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<project>
<parent>
<artifactId>build-common</artifactId>
<groupId>open-jbi-components</groupId>
<version>1.1</version>
<relativePath>../../../ojc-core/build-common</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.zaz.screenscrapingse</groupId>
<artifactId>screenscrapingse-jbiadapter</artifactId>
<name>screenscrapingse-jbiadapter</name>
<packaging>jar</packaging>
<version>${jbicomps.currentVersion}</version>
<description>top level build for screenscrapingse</description>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>${artifactId}-extract-globalized-messages</id>
<phase>process-classes</phase>
<goals>
<goal>run
</goal>
</goals>
<configuration>
<tasks>
<taskdef name="i18n" classname="${I18NTASK_CLASS}" classpath="${I18NTASK_JAR}" />
<i18n dir="${project.build.outputDirectory}" file="${project.build.sourceDirectory}/${msgs.package}/msgs.properties" strict="true" prefix="" pattern="(SSSE-[4-7]\d\d\d)(: )(.*)" />
<!-- copy file to classes dir: -->
<copy file="${project.build.sourceDirectory}/${msgs.package}/msgs.properties" todir="${project.build.outputDirectory}/${msgs.package}" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>install-screenscrapingse-javaxscript</id>
<phase>generate-sources</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<generatePom>true</generatePom>
<packaging>jar</packaging>
<groupId>com.zaz.screenscrapingse</groupId>
<artifactId>javaxscript</artifactId>
<version>${jbicomps.currentVersion}</version>
<file>${SRCROOT}/contrib-zaz/screenscrapingse/lib/javaxscript.jar</file>
</configuration>
</execution>
<execution>
<id>install-screenscrapingse-jruby</id>
<phase>generate-sources</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<generatePom>true</generatePom>
<packaging>jar</packaging>
<groupId>com.zaz.screenscrapingse</groupId>
<artifactId>jruby</artifactId>
<version>${jbicomps.currentVersion}</version>
<file>${SRCROOT}/contrib-zaz/screenscrapingse/lib/jruby.jar</file>
</configuration>
</execution>
<execution>
<id>install-screenscrapingse-jruby-engine</id>
<phase>generate-sources</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<generatePom>true</generatePom>
<packaging>jar</packaging>
<groupId>com.zaz.screenscrapingse</groupId>
<artifactId>jruby-engine</artifactId>
<version>${jbicomps.currentVersion}</version>
<file>${SRCROOT}/contrib-zaz/screenscrapingse/lib/jruby-engine.jar</file>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>open-jbi-components</groupId>
<artifactId>component-toolkit</artifactId>
<version>${jbicomps.currentVersion}</version>
</dependency>
<dependency>
<groupId>open-jbi-components</groupId>
<artifactId>common-util</artifactId>
<version>${jbicomps.currentVersion}</version>
</dependency>
<dependency>
<groupId>open-jbi-components</groupId>
<artifactId>qos</artifactId>
<version>${jbicomps.currentVersion}</version>
</dependency>
<dependency>
<groupId>com.zaz.screenscrapingse</groupId>
<artifactId>screenscrapingse-core</artifactId>
<version>${jbicomps.currentVersion}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-junit</artifactId>
</dependency>
</dependencies>
<properties>
<msgs.package>org/glassfish/openesb/engine/screenscrapingse/jbiadapter</msgs.package>
</properties>
</project>