Posts

How to setup maven-site-plugin when aggregator is not the parent? -

i have system has pom aggregator grouping modules. i'm using maven-site 3.3 , maven 3.2.1. one of module parent parent corporate pom built in job. root-aggregator parent-pom component-one component-two component-three i've setup different values project.url , site.url each project, root-aggregator root , parent under it. the problem i'm facing both root-aggregator , parent-pom being copied (stage) same root folder (stagingdirectory). last project overriding files parent-pom. [info] pushing /home/cvgaviao/aggregator-maven/maven.parent/target/site [info] >>> file:///home/cvgaviao/development/staging-site/./ [info] pushing /home/cvgaviao/aggregator-maven/target/site [info] >>> file:///home/cvgaviao/development/staging-site/./ how make maven-site-plugin understand parent pom not root ?

javascript - JQuery not working on Tumblr? -

i'm kind of new jquery. i've been trying use jquery http://jsfiddle.net/54pp2/2/ , <input id="click" type="button" value="click" /> <label id="test">test</label> $(document).ready(function () { var textarray = []; textarray[0] = 'test 1'; textarray[1] = 'test 2'; textarray[2] = 'test 3'; textarray[3] = 'test 4'; var idx = 0; $('input#click').on('click', function() { idx++; var newidx = idx % textarray.length; $('label#test').text(textarray[newidx]); }); }); but when put in theme code, won't work, though jsfiddle shows works fine. if want see: http://dialoguetest.tumblr.com/ (where when click pink button on sidebar, description text changes. can click once, unlike jquery code enables button clicked few times text change.) when tried use jquery, won't work: http://dialo...

windows - Compiling a C code into a single executable compatible with both WinXP and Win7 -

i trying compile c program executable compatible both winxp , win7. since code needs compact possible, i'd use dlls. visual studio express 2012 update4 can generate code winxp, latter won't work on win7. when running on win7, following error: "the program cant run because msvcr110.dll missing..." can me issue? in advance! the program compile under vs2012 should work on both xp , windows 7. problem windows 7 machine not have required runtime deployed on it. prerequisite of linking against dynamic runtime. must deploy runtime machine runs program. once deploy runtime, instance using vs2012 redistributable package, should find code run. note need on machines, not windows 7 machines. fact have not had on windows xp machine means other application has deployed runtime there. quite xp machine development machine , runtime deployed when installed visual studio. as alternative installing redistributable package can place runtime dll, msvcr110.dll, in direct...

c# - SSIS not executing .EXE using Execute Process Task on INT server -

i have executable able run in dev environment isn't being run in int environment. when try run .exe on int remotely using unc path error stating .exe 16-bit application , can't run on int machine. problem error built .exe , know fact isn't 16-bit application. when try run ssis package call .exe on int not receive 16-bit error, .exe not run. i have tried hard coding location of .exe in execute process task , using variable dynamically sets location based on machine running ssis package on. (both work in dev, neither work in int) can call .exe on int dev, isn't surprise since .exe pulled down int dev. any ideas why .exe run on dev environment not int environment? environments same per our system admin. i have answer issue concerned. the problem file transfer process moving exe dev server int server. process handled via robocopy script (which still unable parameters of), appeared causing issue. i not 100% sure caused issue, script wasn't copying on...

Passing select value from a form through php and then out to email -

i trying add form came bootstrap html template. specifically, add select option can't seem passed through php , out email. attach html , php code below. <select id="selectbasic" name="selectbasic" class="form-control "> <option value="zombie">zombie volunteer</option> <option value="sponsor">sponsorship</option> </select> what need have in php file pick value? i tried this... $body = "below details submitted user on website. <br><br> inquiry type: ".$_post['selectbasic']." <br><br> name: ".$_post['name']." <br><br> email: ".$_post['email']." <br><br> business/organization: ".$_post['phone']." <br><br> comment: ".$_post['comment'].""; any appreciated. in advance! here's complete form: <header class="clea...

java - NoClassDefFoundError:StaticLoggerBinder -

while starting web application , hits following error message : infos: starting servlet engine: apache tomcat/7.0.53 mai 16, 2014 3:35:16 pm org.apache.catalina.loader.webappclassloader validatejarfile infos: validatejarfile(c:\users\ayman\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\atomikos\web-inf\lib\geronimo-servlet_2.5_spec-1.2.jar) - jar not loaded. see servlet spec 3.0, section 10.7.2. offending class: javax/servlet/servlet.class mai 16, 2014 3:35:16 pm org.apache.catalina.loader.webappclassloader validatejarfile infos: validatejarfile(c:\users\ayman\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\atomikos\web-inf\lib\javax.servlet-api-3.0.1.jar) - jar not loaded. see servlet spec 3.0, section 10.7.2. offending class: javax/servlet/servlet.class slf4j: class path contains multiple slf4j bindings. slf4j: found binding in [jar:file:/c:/users/ayman/workspace/.metadata/.plugins/org.eclipse.wst.server.core...

java - TestNG - Skipping a test case for a user -

i'm using testng , using iterator data excel. i have many usernames mentioned in excel , each user has different permissions. for example, user1 has access screen1, screen2 , screen3 of tab. user2 has access screen 1,2 not 3 of tab so have created class work both users, problem here screen 3 not available user2, webdriver fails test shows on report, don't want. is there way skip screen3 test case user2? thanks good morning, suggest use groups discrimination in test annotation. example cans see thread: is possible put condition testng run test if member of 2 groups? thanks attention.