Download mapstruct-1.3.0.final.jar file

Introduction

You can download mapstruct-1.3.0.final.jar in this page.

License

Apache License

Type List

mapstruct-1.3.0.final.jar file has the following types.

META-INF/LICENSE.txt
META-INF/MANIFEST.MF
META-INF/maven/org.mapstruct/mapstruct/pom.properties
META-INF/maven/org.mapstruct/mapstruct/pom.xml
org.mapstruct.AfterMapping.class
org.mapstruct.BeanMapping.class
org.mapstruct.BeforeMapping.class
org.mapstruct.Builder.class
org.mapstruct.CollectionMappingStrategy.class
org.mapstruct.Context.class
org.mapstruct.DecoratedWith.class
org.mapstruct.InheritConfiguration.class
org.mapstruct.InheritInverseConfiguration.class
org.mapstruct.InjectionStrategy.class
org.mapstruct.IterableMapping.class
org.mapstruct.MapMapping.class
org.mapstruct.Mapper.class
org.mapstruct.MapperConfig.class
org.mapstruct.Mapping.class
org.mapstruct.MappingConstants.class
org.mapstruct.MappingInheritanceStrategy.class
org.mapstruct.MappingTarget.class
org.mapstruct.Mappings.class
org.mapstruct.Named.class
org.mapstruct.NullValueCheckStrategy.class
org.mapstruct.NullValueMappingStrategy.class
org.mapstruct.NullValuePropertyMappingStrategy.class
org.mapstruct.ObjectFactory.class
org.mapstruct.Qualifier.class
org.mapstruct.ReportingPolicy.class
org.mapstruct.TargetType.class
org.mapstruct.ValueMapping.class
org.mapstruct.ValueMappings.class
org.mapstruct.factory.Mappers.class
org.mapstruct.util.Experimental.class

Pom

mapstruct-1.3.0.final.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--

    Copyright MapStruct Authors.

    Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0

-->
<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.3.0.Final</version>
        <relativePath>../parent/pom.xml</relativePath>
    </parent>

    <artifactId>mapstruct</artifactId>
    <packaging>jar</packaging>
    <name>MapStruct Core</name>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</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-resources-plugin</artifactId>
                <executions>
                    <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>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Automatic-Module-Name>org.mapstruct</Automatic-Module-Name>
                    </instructions>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.github.siom79.japicmp</groupId>
                <artifactId>japicmp-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>org.mapstruct</groupId>
   <artifactId>mapstruct</artifactId>
   <version>1.3.0.final</version>
</dependency>

Download

If you think the following mapstruct-1.3.0.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download mapstruct-1.3.0.final.jar file




PreviousNext

Related