You can download mapstruct-jdk8-1.0.0.beta4.jar in this page.
Apache License
mapstruct-jdk8-1.0.0.beta4.jar file has the following types.
META-INF/LICENSE.txt META-INF/MANIFEST.MF META-INF/maven/org.mapstruct/mapstruct-jdk8/pom.properties META-INF/maven/org.mapstruct/mapstruct-jdk8/pom.xml org.mapstruct.BeanMapping.class org.mapstruct.CollectionMappingStrategy.class org.mapstruct.DecoratedWith.class org.mapstruct.InheritConfiguration.class org.mapstruct.InheritInverseConfiguration.class org.mapstruct.IterableMapping.class org.mapstruct.MapMapping.class org.mapstruct.Mapper.class org.mapstruct.MapperConfig.class org.mapstruct.Mapping.class org.mapstruct.MappingInheritanceStrategy.class org.mapstruct.MappingTarget.class org.mapstruct.Mappings.class org.mapstruct.NullValueMappingStrategy.class org.mapstruct.Qualifier.class org.mapstruct.ReportingPolicy.class org.mapstruct.TargetType.class org.mapstruct.factory.Mappers.class
mapstruct-jdk8-1.0.0.beta4.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2012-2015 Gunnar Morling (http://www.gunnarmorling.de/) and/or other contributors as indicated by the @authors tag. See the copyright.txt file in the distribution for a full listing of all contributors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <parent> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-parent</artifactId> <version>1.0.0.Beta4</version> <relativePath>../parent/pom.xml</relativePath> </parent> <artifactId>mapstruct-jdk8</artifactId> <packaging>jar</packaging> <name>MapStruct Core JDK 8</name> <description>MapStruct annotations to be used with JDK 8 and later</description> <properties> <common.sources.dir>copied-common-sources</common.sources.dir> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mapstruct-common</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <id>check-style</id> <phase>verify</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-copied-common-sources</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/${common.sources.dir}</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/${common.sources.dir}</outputDirectory> <resources> <resource> <directory>${basedir}/../core-common/src/main/java</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> <execution> <id>copy-mapstruct-license</id> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/classes/META-INF</outputDirectory> <resources> <resource> <directory>${basedir}/..</directory> <filtering>false</filtering> <include>LICENSE.txt</include> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-jdk8</artifactId> <version>1.0.0.beta4</version> </dependency>
If you think the following mapstruct-jdk8-1.0.0.beta4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download mapstruct-jdk8-1.0.0.beta4.jar file