mir-wizard
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mycore.mir</groupId> <artifactId>mir-wizard</artifactId> <version>2024.11</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.mycore.mir</groupId> <artifactId>mir-parent</artifactId> <version>2024.11</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>mir-wizard</artifactId> <name>MIR: The MIR Wizard</name> <properties> <template.assetsdir>${project.build.directory}/classes/META-INF/resources/mir-wizard/assets</template.assetsdir> </properties> <build> <resources> <resource> <directory>${basedir}/src/main/resources</directory> </resource> <resource> <targetPath>${project.build.outputDirectory}/setup/</targetPath> <directory>${project.build.directory}/dependency/mir-cli-${project.version}/config</directory> <includes> <include>acl/*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addExtensions /> </manifest> <manifestEntries> <MCR-Artifact-Id>${project.artifactId}</MCR-Artifact-Id> <MCR-Application-Module>${project.name}</MCR-Application-Module> <Priority>50</Priority> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>unpack</goal> </goals> <phase>generate-resources</phase> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>mir-cli</artifactId> <version>${project.version}</version> <type>zip</type> <includes>*/config/**/*</includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>yarn-install</id> <goals> <goal>yarn</goal> </goals> <phase>process-resources</phase> <configuration> <arguments>install</arguments> </configuration> </execution> <execution> <id>grunt-build</id> <goals> <goal>grunt</goal> </goals> <phase>process-resources</phase> <configuration> <arguments>--verbose --assetsDirectory=${template.assetsdir}</arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> </dependency> <dependency> <groupId>org.mycore</groupId> <artifactId>mycore-base</artifactId> </dependency> <dependency> <groupId>org.mycore</groupId> <artifactId>mycore-base</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>org.mycore</groupId> <artifactId>mycore-classifications</artifactId> </dependency> <dependency> <groupId>org.mycore</groupId> <artifactId>mycore-solr</artifactId> </dependency> <dependency> <groupId>org.mycore</groupId> <artifactId>mycore-user2</artifactId> </dependency> </dependencies> </project>