Alon Bar-Lev has posted comments on this change.

Change subject: core: Adds dependency list generation
......................................................................


Patch Set 1:

(5 comments)

....................................................
File Makefile
Line 103: BUILD_FLAGS:=$(BUILD_FLAGS) -D skipTests
Line 104: endif
Line 105: ifeq ($(BUILD_DL),0)
Line 106: BUILD_FLAGS:=$(BUILD_FLAGS) -D skipDependencyList
Line 107: endif
that's nice! but I really think that we can drop these changes and use the 
EXTRA_BUILD_FLAGS... :)
Line 108: ifneq ($(BUILD_DEV),0)
Line 109: BUILD_FLAGS:=$(BUILD_FLAGS) $(DEV_BUILD_FLAGS)
Line 110: endif
Line 111: BUILD_FLAGS:=$(BUILD_FLAGS) $(EXTRA_BUILD_FLAGS)


....................................................
File pom.xml
Line 694:     </profile>
Line 695:     <profile>
Line 696:       <id>list-dependencies</id>
Line 697:       <activation>
Line 698:         <property><name>!skipDependencyList</name></property>
best to have all our custom properties start with ovirt.xxx so we know that 
these belongs to us.
Line 699:       </activation>
Line 700:       <build>
Line 701:         <plugins>
Line 702:           <plugin>


Line 709:                 <goals>
Line 710:                   <goal>resolve</goal>
Line 711:                 </goals>
Line 712:                 <configuration>
Line 713:                   
<outputFile>${session.executionRootDirectory}/target/dependencies.txt</outputFile>
why put it in target of root, this is new one no?  won't 
project.build.directory be better?
Line 714:                   <appendOutput>true</appendOutput>
Line 715:                 </configuration>
Line 716:               </execution>
Line 717:             </executions>


Line 710:                   <goal>resolve</goal>
Line 711:                 </goals>
Line 712:                 <configuration>
Line 713:                   
<outputFile>${session.executionRootDirectory}/target/dependencies.txt</outputFile>
Line 714:                   <appendOutput>true</appendOutput>
why append output? we want to have sane file every time we do mvn install even 
if we do not clean, will that prevent that?
Line 715:                 </configuration>
Line 716:               </execution>
Line 717:             </executions>
Line 718:           </plugin>


Line 711:                 </goals>
Line 712:                 <configuration>
Line 713:                   
<outputFile>${session.executionRootDirectory}/target/dependencies.txt</outputFile>
Line 714:                   <appendOutput>true</appendOutput>
Line 715:                 </configuration>
can we exclude our own artifacts? we do not need these in report.
Line 716:               </execution>
Line 717:             </executions>
Line 718:           </plugin>
Line 719:         </plugins>


-- 
To view, visit http://gerrit.ovirt.org/19785
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I78d7facefe4e4fc6bb3144b5b658dcfc5e412ed1
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Martin PeÅ™ina <[email protected]>
Gerrit-Reviewer: Alon Bar-Lev <[email protected]>
Gerrit-Reviewer: Yair Zaslavsky <[email protected]>
Gerrit-HasComments: Yes
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to