org.gradle.api.publish.maven.MavenPom Java Examples

The following examples show how to use org.gradle.api.publish.maven.MavenPom. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GenerateMavenPom.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public void setPom(MavenPom pom) {
    this.pom = pom;
}
 
Example #2
Source File: DefaultMavenPublication.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public void pom(Action<? super MavenPom> configure) {
    configure.execute(pom);
}
 
Example #3
Source File: GenerateMavenPom.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public void setPom(MavenPom pom) {
    this.pom = pom;
}
 
Example #4
Source File: DefaultMavenPublication.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public void pom(Action<? super MavenPom> configure) {
    configure.execute(pom);
}
 
Example #5
Source File: FirebaseLibraryExtension.java    From firebase-android-sdk with Apache License 2.0 4 votes vote down vote up
/** Provides a hook to customize pom generation. */
public void customizePom(Action<MavenPom> action) {
  customizePomAction = action;
}
 
Example #6
Source File: FirebaseLibraryExtension.java    From firebase-android-sdk with Apache License 2.0 4 votes vote down vote up
public void applyPomCustomization(MavenPom pom) {
  if (customizePomAction != null) {
    customizePomAction.execute(pom);
  }
}
 
Example #7
Source File: GenerateMavenPom.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public void setPom(MavenPom pom) {
    this.pom = pom;
}
 
Example #8
Source File: DefaultMavenPublication.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public void pom(Action<? super MavenPom> configure) {
    configure.execute(pom);
}
 
Example #9
Source File: GenerateMavenPom.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public void setPom(MavenPom pom) {
    this.pom = pom;
}
 
Example #10
Source File: DefaultMavenPublication.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public void pom(Action<? super MavenPom> configure) {
    configure.execute(pom);
}
 
Example #11
Source File: GenerateMavenPom.java    From pushfish-android with BSD 2-Clause "Simplified" License 2 votes vote down vote up
/**
 * The Maven POM.
 *
 * @return The Maven POM.
 */
public MavenPom getPom() {
    return pom;
}
 
Example #12
Source File: GenerateMavenPom.java    From pushfish-android with BSD 2-Clause "Simplified" License 2 votes vote down vote up
/**
 * The Maven POM.
 *
 * @return The Maven POM.
 */
public MavenPom getPom() {
    return pom;
}
 
Example #13
Source File: GenerateMavenPom.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 2 votes vote down vote up
/**
 * The Maven POM.
 *
 * @return The Maven POM.
 */
public MavenPom getPom() {
    return pom;
}
 
Example #14
Source File: GenerateMavenPom.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 2 votes vote down vote up
/**
 * The Maven POM.
 *
 * @return The Maven POM.
 */
public MavenPom getPom() {
    return pom;
}