diff options
| author | Mohammad Sajid Anwar <mohammad.anwar@yahoo.com> | 2025-08-04 06:39:40 +0100 |
|---|---|---|
| committer | Mohammad Sajid Anwar <mohammad.anwar@yahoo.com> | 2025-08-04 06:39:40 +0100 |
| commit | ce2f933a023e15e5dac73508e56a9aec0e87fae6 (patch) | |
| tree | d2d54647bed4feebdf83a192e43fb7a11157f2f6 /challenge-333/luca-ferrari/pljava/pom.xml | |
| parent | cbc92f551c43c4df13b334b528e11141fcbce400 (diff) | |
| download | perlweeklychallenge-club-ce2f933a023e15e5dac73508e56a9aec0e87fae6.tar.gz perlweeklychallenge-club-ce2f933a023e15e5dac73508e56a9aec0e87fae6.tar.bz2 perlweeklychallenge-club-ce2f933a023e15e5dac73508e56a9aec0e87fae6.zip | |
- Added template for week 333.
Diffstat (limited to 'challenge-333/luca-ferrari/pljava/pom.xml')
| -rw-r--r-- | challenge-333/luca-ferrari/pljava/pom.xml | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/challenge-333/luca-ferrari/pljava/pom.xml b/challenge-333/luca-ferrari/pljava/pom.xml new file mode 100644 index 0000000000..677727f42f --- /dev/null +++ b/challenge-333/luca-ferrari/pljava/pom.xml @@ -0,0 +1,72 @@ + +<project + xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" > + <modelVersion>4.0.0</modelVersion> + + <groupId>PWC</groupId> + <artifactId> + PWC332 + </artifactId> + <version> + 1 + </version> + + <name>Perl Weekly Challenge 332 with package PWC332</name> + <description>Implementation of the tasks in PL/Java for PWC 332</description> + + <properties> + <project.build.sourceEncoding>US-ASCII</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>org.postgresql</groupId> + <artifactId>pljava-api</artifactId> + <version>1.6.6</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <release>9</release> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.6</version> + <configuration> + <archive> + <manifest> + <!-- This identifies and version-stamps the jar. + Not essential, but easy and useful. --> + <addDefaultImplementationEntries> + true + </addDefaultImplementationEntries> + </manifest> + + <manifestSections> + <!-- This identifies a file in the jar named + pljava.ddr as an SQLJDeploymentDescriptor. --> + <manifestSection> + <name>pljava.ddr</name> + <manifestEntries> + <SQLJDeploymentDescriptor> + true + </SQLJDeploymentDescriptor> + </manifestEntries> + </manifestSection> + </manifestSections> + </archive> + </configuration> + </plugin> + </plugins> + </build> +</project> |
