aboutsummaryrefslogtreecommitdiff
path: root/challenge-277/luca-ferrari/pljava
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2024-07-08 03:05:52 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2024-07-08 03:05:52 +0100
commit996112d2e3daa2be2425e08aec3ce172f71b841b (patch)
tree5d1f5855d10028897d0815432918bf58f706d424 /challenge-277/luca-ferrari/pljava
parent2ab3d698fb81766cb03a1a14d54d1d7c4f1bcc1a (diff)
downloadperlweeklychallenge-club-996112d2e3daa2be2425e08aec3ce172f71b841b.tar.gz
perlweeklychallenge-club-996112d2e3daa2be2425e08aec3ce172f71b841b.tar.bz2
perlweeklychallenge-club-996112d2e3daa2be2425e08aec3ce172f71b841b.zip
- Added template for week 277.
Diffstat (limited to 'challenge-277/luca-ferrari/pljava')
-rw-r--r--challenge-277/luca-ferrari/pljava/pom.xml72
1 files changed, 72 insertions, 0 deletions
diff --git a/challenge-277/luca-ferrari/pljava/pom.xml b/challenge-277/luca-ferrari/pljava/pom.xml
new file mode 100644
index 0000000000..ab36c0045b
--- /dev/null
+++ b/challenge-277/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>
+ PWC276
+ </artifactId>
+ <version>
+ 1
+ </version>
+
+ <name>Perl Weekly Challenge 276 with package PWC276</name>
+ <description>Implementation of the tasks in PL/Java for PWC 276</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>