|  | 
|  | 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
|  | 2 | +	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
|  | 3 | +	<modelVersion>4.0.0</modelVersion> | 
|  | 4 | + | 
|  | 5 | +	<artifactId>fj-doc-mod-opencsv</artifactId> | 
|  | 6 | + | 
|  | 7 | +	<parent> | 
|  | 8 | +		<groupId>org.fugerit.java</groupId> | 
|  | 9 | +		<artifactId>fj-doc</artifactId> | 
|  | 10 | +		<version>0.5.4</version> | 
|  | 11 | +	</parent> | 
|  | 12 | + | 
|  | 13 | +	<name>fj-doc-mod-opencsv</name> | 
|  | 14 | +	<description>Rendere for CSV using OpenCSV</description> | 
|  | 15 | + | 
|  | 16 | +	<licenses> | 
|  | 17 | +		<license> | 
|  | 18 | +			<name>Apache License, Version 2.0</name> | 
|  | 19 | +			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | 
|  | 20 | +			<distribution>repo</distribution> | 
|  | 21 | +		</license> | 
|  | 22 | +	</licenses> | 
|  | 23 | +	 | 
|  | 24 | +	<properties> | 
|  | 25 | +		<opencsv-version>5.7.1</opencsv-version> | 
|  | 26 | +	</properties> | 
|  | 27 | +	 | 
|  | 28 | +	<build> | 
|  | 29 | +		 | 
|  | 30 | +	</build> | 
|  | 31 | + | 
|  | 32 | +	<dependencies> | 
|  | 33 | + | 
|  | 34 | +		<dependency> | 
|  | 35 | +		    <groupId>com.opencsv</groupId> | 
|  | 36 | +		    <artifactId>opencsv</artifactId> | 
|  | 37 | +		    <version>${opencsv-version}</version> | 
|  | 38 | +		</dependency>		 | 
|  | 39 | + | 
|  | 40 | +		<dependency> | 
|  | 41 | +			<groupId>org.fugerit.java</groupId> | 
|  | 42 | +			<artifactId>fj-core</artifactId> | 
|  | 43 | +		</dependency>	 | 
|  | 44 | +	 | 
|  | 45 | +		<dependency> | 
|  | 46 | +			<groupId>org.fugerit.java</groupId> | 
|  | 47 | +			<artifactId>fj-doc-base</artifactId> | 
|  | 48 | +		</dependency>		 | 
|  | 49 | +	 | 
|  | 50 | +	</dependencies> | 
|  | 51 | + | 
|  | 52 | +	<organization> | 
|  | 53 | +		<url>https://www.fugerit.org</url> | 
|  | 54 | +		<name>Fugerit</name> | 
|  | 55 | +	</organization> | 
|  | 56 | +	 | 
|  | 57 | +	<url>https://www.fugerit.org/perm/venus/</url> | 
|  | 58 | +	 | 
|  | 59 | +	<profiles> | 
|  | 60 | +	 | 
|  | 61 | +		<profile> | 
|  | 62 | +			<id>full</id> | 
|  | 63 | +			<build> | 
|  | 64 | +				<plugins> | 
|  | 65 | +					<plugin> | 
|  | 66 | +						<groupId>org.apache.maven.plugins</groupId> | 
|  | 67 | +						<artifactId>maven-source-plugin</artifactId> | 
|  | 68 | +						<executions> | 
|  | 69 | +							<execution> | 
|  | 70 | +								<id>attach-sources</id> | 
|  | 71 | +								<goals> | 
|  | 72 | +									<goal>jar</goal> | 
|  | 73 | +								</goals> | 
|  | 74 | +							</execution> | 
|  | 75 | +						</executions> | 
|  | 76 | +					</plugin> | 
|  | 77 | +					<plugin> | 
|  | 78 | +						<groupId>org.apache.maven.plugins</groupId> | 
|  | 79 | +						<artifactId>maven-javadoc-plugin</artifactId> | 
|  | 80 | +						<configuration> | 
|  | 81 | +							<stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile> | 
|  | 82 | +						</configuration> | 
|  | 83 | +						<executions> | 
|  | 84 | +							<execution> | 
|  | 85 | +								<id>attach-javadocs</id> | 
|  | 86 | +								<goals> | 
|  | 87 | +									<goal>jar</goal> | 
|  | 88 | +								</goals> | 
|  | 89 | +							</execution> | 
|  | 90 | +						</executions> | 
|  | 91 | +					</plugin>			 | 
|  | 92 | +				</plugins> | 
|  | 93 | +			</build> | 
|  | 94 | +		</profile> | 
|  | 95 | +	 | 
|  | 96 | +	</profiles> | 
|  | 97 | +	 | 
|  | 98 | +</project> | 
0 commit comments