]> git.argeo.org Git - gpl/argeo-jcr.git/blob - rpmfactory/core/ThirdPartyRpmRepository.java
Prepare next development cycle
[gpl/argeo-jcr.git] / rpmfactory / core / ThirdPartyRpmRepository.java
1 package org.argeo.slc.rpmfactory.core;
2
3 /**
4 * A repository of third party RPMs used for the build. RPM used by the builds
5 * will be cached within the system.
6 */
7 public class ThirdPartyRpmRepository extends AbstractRpmRepository {
8 private String yumConf;
9
10 public String getYumConf() {
11 return yumConf;
12 }
13
14 public void setYumConf(String yumConf) {
15 this.yumConf = yumConf;
16 }
17
18 }