IIS Returning Old User Names to my application

I’ve had similar issues lately and as stated in Robert MacLean’s answer, AviD’s group policy changes don’t work if you’re not logging in as the users. I found changing the LSA Lookup Cache size as described is MS KB946358 worked without rebooting or recycling any apppool or services. I found this as an answer to … Read more

Maven release plugin git credentials

Based on the docs you have to use a special property, project.scm.id, to define the id of the appropriate server entry in your settings.xml file. <properties> <project.scm.id>my-scm-server</project.scm.id> </properties> And the following in your settings.xml file: <settings> <servers> <server> <id>my-scm-server</id> <username>myUser</username> <password>myPassword</password> </server> </servers> </settings> BTW: Check if you are using the most recent version of … Read more