Committed by
Gerrit Code Review
Updated CoreManager version string to be 1.2.0-SNAPSHOT.
Change-Id: I3de77314b84d3bd51ca709c36e29f2c33fce816c
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -20,13 +20,13 @@ import org.apache.felix.scr.annotations.Component; | ... | @@ -20,13 +20,13 @@ import org.apache.felix.scr.annotations.Component; |
| 20 | import org.apache.felix.scr.annotations.Reference; | 20 | import org.apache.felix.scr.annotations.Reference; |
| 21 | import org.apache.felix.scr.annotations.ReferenceCardinality; | 21 | import org.apache.felix.scr.annotations.ReferenceCardinality; |
| 22 | import org.apache.felix.scr.annotations.Service; | 22 | import org.apache.felix.scr.annotations.Service; |
| 23 | +import org.onlab.util.Tools; | ||
| 23 | import org.onosproject.core.ApplicationId; | 24 | import org.onosproject.core.ApplicationId; |
| 24 | import org.onosproject.core.ApplicationIdStore; | 25 | import org.onosproject.core.ApplicationIdStore; |
| 25 | import org.onosproject.core.CoreService; | 26 | import org.onosproject.core.CoreService; |
| 26 | import org.onosproject.core.IdBlockStore; | 27 | import org.onosproject.core.IdBlockStore; |
| 27 | import org.onosproject.core.IdGenerator; | 28 | import org.onosproject.core.IdGenerator; |
| 28 | import org.onosproject.core.Version; | 29 | import org.onosproject.core.Version; |
| 29 | -import org.onlab.util.Tools; | ||
| 30 | 30 | ||
| 31 | import java.io.File; | 31 | import java.io.File; |
| 32 | import java.util.List; | 32 | import java.util.List; |
| ... | @@ -42,7 +42,7 @@ import static com.google.common.base.Preconditions.checkNotNull; | ... | @@ -42,7 +42,7 @@ import static com.google.common.base.Preconditions.checkNotNull; |
| 42 | public class CoreManager implements CoreService { | 42 | public class CoreManager implements CoreService { |
| 43 | 43 | ||
| 44 | private static final File VERSION_FILE = new File("../VERSION"); | 44 | private static final File VERSION_FILE = new File("../VERSION"); |
| 45 | - private static Version version = Version.version("1.1.0-SNAPSHOT"); | 45 | + private static Version version = Version.version("1.2.0-SNAPSHOT"); |
| 46 | 46 | ||
| 47 | @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY) | 47 | @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY) |
| 48 | protected ApplicationIdStore applicationIdStore; | 48 | protected ApplicationIdStore applicationIdStore; | ... | ... |
-
Please register or login to post a comment