pom.xml (logback-1.2.3) | : | pom.xml (logback-v_1.2.7) | ||
---|---|---|---|---|
<project xmlns="http://maven.apache.org/POM/4.0.0" | <project xmlns="http://maven.apache.org/POM/4.0.0" | |||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apac he.org/xsd/maven-4.0.0.xsd"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apac he.org/xsd/maven-4.0.0.xsd"> | |||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
<parent> | <parent> | |||
<groupId>ch.qos.logback</groupId> | <groupId>ch.qos.logback</groupId> | |||
<artifactId>logback-parent</artifactId> | <artifactId>logback-parent</artifactId> | |||
<version>1.2.3</version> | <version>1.2.7-SNAPSHOT</version> | |||
</parent> | </parent> | |||
<artifactId>logback-site</artifactId> | <artifactId>logback-site</artifactId> | |||
<packaging>jar</packaging> | <packaging>jar</packaging> | |||
<name>Logback Site</name> | <name>Logback Site</name> | |||
<description>logback-site module</description> | <description>logback-site module</description> | |||
<inceptionYear>1999</inceptionYear> | <inceptionYear>1999</inceptionYear> | |||
<build> | <build> | |||
skipping to change at line 49 | skipping to change at line 49 | |||
<plugin> | <plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-resources-plugin</artifactId> | <artifactId>maven-resources-plugin</artifactId> | |||
<configuration> | <configuration> | |||
<nonFilteredFileExtensions> | <nonFilteredFileExtensions> | |||
<nonFilteredFileExtension>js</nonFilteredFileExtension> | <nonFilteredFileExtension>js</nonFilteredFileExtension> | |||
</nonFilteredFileExtensions> | </nonFilteredFileExtensions> | |||
</configuration> | </configuration> | |||
</plugin> | </plugin> | |||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-source-plugin</artifactId> | ||||
<version>${maven-source-plugin.version}</version> | ||||
<configuration> | ||||
<!-- Maven central does not allow entries with ../.. in | ||||
*-source.jar but requires that they exist. --> | ||||
<includes> | ||||
<include>**/META-INF/*</include> | ||||
</includes> | ||||
</configuration> | ||||
<executions> | ||||
<execution> | ||||
<phase>package</phase> | ||||
<goals> | ||||
<goal>jar</goal> | ||||
</goals> | ||||
</execution> | ||||
</executions> | ||||
</plugin> | ||||
</plugins> | </plugins> | |||
</build> | </build> | |||
</project> | </project> | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 23 lines changed or added |