We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When dealing with a lot of projects, it would be helpful if logback-XSD was made available via Maven Central. We could copy it to our projects via
<plugin> <!-- Used to pull logback.xsd from adk-core --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-logback-xsd</id> <phase>generate-sources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> </artifactItem> </artifactItems> <includes>**/logback.xsd</includes> <outputDirectory>${project.basedir}/target/xsd-includes</outputDirectory> </configuration> </execution> </executions> </plugin>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When dealing with a lot of projects, it would be helpful if logback-XSD was made available via Maven Central. We could copy it to our projects via
The text was updated successfully, but these errors were encountered: