|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Copyright (C) 2021-2025 Philip Helger (www.helger.com) |
| 5 | + philip[at]helger[dot]com |
| 6 | +
|
| 7 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | + you may not use this file except in compliance with the License. |
| 9 | + You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | + Unless required by applicable law or agreed to in writing, software |
| 14 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | + See the License for the specific language governing permissions and |
| 17 | + limitations under the License. |
| 18 | +
|
| 19 | +--> |
| 20 | +<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/maven-v4_0_0.xsd"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + <parent> |
| 23 | + <groupId>com.helger.phive.rules</groupId> |
| 24 | + <artifactId>phive-rules-parent-pom</artifactId> |
| 25 | + <version>4.0.2-SNAPSHOT</version> |
| 26 | + </parent> |
| 27 | + <artifactId>phive-rules-ksef</artifactId> |
| 28 | + <packaging>bundle</packaging> |
| 29 | + <name>phive-rules-ksef</name> |
| 30 | + <description>Polish KSeF validation rules for phive</description> |
| 31 | + <url>https://github.com/phax/phive-rules/phive-rules-ksef</url> |
| 32 | + <inceptionYear>2021</inceptionYear> |
| 33 | + |
| 34 | + <licenses> |
| 35 | + <license> |
| 36 | + <name>Apache 2</name> |
| 37 | + <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
| 38 | + <distribution>repo</distribution> |
| 39 | + </license> |
| 40 | + </licenses> |
| 41 | + |
| 42 | + <organization> |
| 43 | + <name>Philip Helger</name> |
| 44 | + <url>http://www.helger.com</url> |
| 45 | + </organization> |
| 46 | + |
| 47 | + <developers> |
| 48 | + <developer> |
| 49 | + <id>philip</id> |
| 50 | + <name>Philip Helger</name> |
| 51 | + <email>ph(at)helger.com</email> |
| 52 | + <url>http://www.helger.com</url> |
| 53 | + </developer> |
| 54 | + <developer> |
| 55 | + <id>kris</id> |
| 56 | + <name>Kris Raich</name> |
| 57 | + <email>kris.raich@ecosio.com</email> |
| 58 | + <url>https://ecosio.com</url> |
| 59 | + </developer> |
| 60 | + </developers> |
| 61 | + |
| 62 | + <dependencies> |
| 63 | + <dependency> |
| 64 | + <groupId>com.helger.xsd</groupId> |
| 65 | + <artifactId>ph-xsds-xmldsig</artifactId> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>com.helger.phive.rules</groupId> |
| 69 | + <artifactId>phive-rules-api</artifactId> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + <dependency> |
| 73 | + <groupId>junit</groupId> |
| 74 | + <artifactId>junit</artifactId> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.slf4j</groupId> |
| 79 | + <artifactId>slf4j-simple</artifactId> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>com.sun.xml.bind</groupId> |
| 84 | + <artifactId>jaxb-impl</artifactId> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>com.helger.commons</groupId> |
| 89 | + <artifactId>ph-unittest-support-ext</artifactId> |
| 90 | + <scope>test</scope> |
| 91 | + </dependency> |
| 92 | + </dependencies> |
| 93 | + |
| 94 | + <build> |
| 95 | + <plugins> |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.felix</groupId> |
| 98 | + <artifactId>maven-bundle-plugin</artifactId> |
| 99 | + <extensions>true</extensions> |
| 100 | + <configuration> |
| 101 | + <instructions> |
| 102 | + <Automatic-Module-Name>com.helger.phive.ksef</Automatic-Module-Name> |
| 103 | + <Export-Package> |
| 104 | + com.helger.phive.ksef |
| 105 | + </Export-Package> |
| 106 | + <Import-Package>!jakarta.annotation.*,*</Import-Package> |
| 107 | + </instructions> |
| 108 | + </configuration> |
| 109 | + </plugin> |
| 110 | + <plugin> |
| 111 | + <groupId>com.helger.maven</groupId> |
| 112 | + <artifactId>ph-schematron-maven-plugin</artifactId> |
| 113 | + </plugin> |
| 114 | + </plugins> |
| 115 | + </build> |
| 116 | +</project> |
0 commit comments